42 lines
1.5 KiB
JavaScript
42 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 {logoutUser, toChannelScreen} from '@support/ui/screen';
|
|
import {Setup} from '@support/server_api';
|
|
|
|
describe('Autocomplete', () => {
|
|
beforeAll(async () => {
|
|
const {user} = await Setup.apiInit();
|
|
await toChannelScreen(user);
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await logoutUser();
|
|
});
|
|
|
|
it('MM-T3390 should render autocomplete in channel header edit screen', async () => {
|
|
// # Open channel info modal
|
|
await element(by.id('channel.title.button')).tap();
|
|
|
|
// # Open edit channel menu
|
|
await element(by.text('Edit Channel')).tap();
|
|
|
|
// # Activate at_mention autocomplete
|
|
await element(by.id('edit_channel.header.input')).typeText('@');
|
|
|
|
// * Expect autocomplete to render
|
|
await expect(element(by.id('autocomplete.at_mention.list'))).toExist();
|
|
|
|
// # Go to previous screen
|
|
await element(by.id('screen.back.button')).tap();
|
|
|
|
// # Close channel info screen
|
|
await element(by.id('screen.channel_info.close')).tap();
|
|
});
|
|
});
|