* Detox/E2E: Migrate to typescript * Add jest.config.js * Add moduleMapper to config.json * Add cookie jar to axios client, fix tsconfig.json and default_config.json * Take keyboard into consideration; clean test for now for this migration PR * Revert changes on path_builder * Attempt to fix dep issues * Update detox dep * Added missing @type dev dependencies * Fix dep order * Fix unit tests * Added dynamic year to email.ts
24 lines
785 B
TypeScript
24 lines
785 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {Plugin, System, User} from '@support/server_api';
|
|
import {siteOneUrl} from '@support/test_config';
|
|
|
|
beforeAll(async () => {
|
|
// Login as sysadmin and reset server configuration
|
|
await System.apiCheckSystemHealth(siteOneUrl);
|
|
await User.apiAdminLogin(siteOneUrl);
|
|
await System.apiUpdateConfig(siteOneUrl);
|
|
await Plugin.apiDisableNonPrepackagedPlugins(siteOneUrl);
|
|
|
|
await device.launchApp({
|
|
newInstance: false,
|
|
launchArgs: {detoxPrintBusyIdleResources: 'YES'},
|
|
permissions: {
|
|
notifications: 'YES',
|
|
camera: 'YES',
|
|
medialibrary: 'YES',
|
|
photos: 'YES',
|
|
},
|
|
});
|
|
});
|