mattermost-mobile/detox/e2e/support/ui/component/index.js
Saturnino Abril a819f63d99
MM-30076 Detox/E2E: Update UI test structure for reusability (#4931)
* update UI test structure for reusability

* fix Android tests

* improve autocomplete test

* minor cleanup
2020-11-03 18:11:49 +08:00

12 lines
314 B
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import Autocomplete from './autocomplete';
import ChannelSidebar from './channel_sidebar';
import PostOptions from './post_options';
export {
Autocomplete,
ChannelSidebar,
PostOptions,
};