mattermost-mobile/detox/e2e/test/files_and_attachments/enable_upload.e2e.js
Joseph Baylon 4f668f0fdf
MM-30286 Detox/E2E: Add e2e test for MM-T3222 and some cleanup (#4959)
* MM-30286 Detox/E2E: Add e2e test for MM-T3222 and some cleanup

* Fix merge issues

* Fix more issues

* Fixed new line

* Remove redundant check

* Updated instance to getElement

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
2020-11-17 10:52:03 -08:00

44 lines
1.4 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
// *******************************************************************
// - [#] indicates a test step (e.g. # Go to a screen)
// - [*] indicates an assertion (e.g. * Check the title)
// - Use element testID when selecting an element. Create one if none.
// *******************************************************************
import {ChannelScreen} from '@support/ui/screen';
import {
Setup,
System,
} from '@support/server_api';
describe('Enable Upload', () => {
beforeAll(async () => {
// * Verify that the server has license
await System.apiRequireLicense();
// # Enable mobile upload
await System.apiUpdateConfig({FileSettings: {EnableMobileUpload: true}});
const {user} = await Setup.apiInit();
await ChannelScreen.open(user);
});
afterAll(async () => {
await ChannelScreen.logout();
});
it('MM-T3483 should enable file, image, camera icons when mobile file upload is enabled', async () => {
const {
cameraQuickAction,
fileQuickAction,
imageQuickAction,
} = ChannelScreen;
// * Verify enabled file, image, camera icons are visible
await expect(cameraQuickAction).toBeVisible();
await expect(fileQuickAction).toBeVisible();
await expect(imageQuickAction).toBeVisible();
});
});