* Detox/E2E: Initial e2e tests in Gekidou * Change Local Server to Server 1 * Renamed variables for consistency * Added team display name verification on channel list screen * Simplified login by email setup * Simplified smoke test server login steps
16 lines
411 B
JavaScript
16 lines
411 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import AccountScreen from './account';
|
|
import ChannelListScreen from './channel_list';
|
|
import HomeScreen from './home';
|
|
import LoginScreen from './login';
|
|
import ServerScreen from './server';
|
|
|
|
export {
|
|
AccountScreen,
|
|
ChannelListScreen,
|
|
HomeScreen,
|
|
LoginScreen,
|
|
ServerScreen,
|
|
};
|