mattermost-mobile/detox/e2e/test/files_and_attachments/disable_upload.e2e.js
Daniel Espino García 4c8594d330
Add linter rules for import order and type member delimiters (#5514)
* Add linter rules for import order and type member delimiters

* Remove unneeded group

* Group all app/* imports before the internal imports

* Move app/ imports before parent imports

* Separate @node_modules imports into a different group

* Substitute app paths by aliases

* Fix @node_modules import order and add test related modules

* Add aliases for types and test, and group import types
2021-07-23 11:06:04 +02:00

44 lines
1.5 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 {
Setup,
System,
} from '@support/server_api';
import {ChannelScreen} from '@support/ui/screen';
describe('Disable Upload', () => {
beforeAll(async () => {
// * Verify that the server has license
await System.apiRequireLicense();
// # Disable mobile upload
await System.apiUpdateConfig({FileSettings: {EnableMobileUpload: false}});
const {user} = await Setup.apiInit();
await ChannelScreen.open(user);
});
afterAll(async () => {
await ChannelScreen.logout();
});
it('MM-T3453 should disable file, image, camera icons when mobile file upload is disabled', async () => {
const {
cameraQuickActionDisabled,
fileQuickActionDisabled,
imageQuickActionDisabled,
} = ChannelScreen;
// * Verify disabled file, image, camera icons are visible
await expect(cameraQuickActionDisabled).toBeVisible();
await expect(fileQuickActionDisabled).toBeVisible();
await expect(imageQuickActionDisabled).toBeVisible();
});
});