mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-31 17:38:28 +00:00
[ACA-1628] async await (#693)
* async / await on login component and utils * more async / awaits * remove fdescribe * expect for exact totalItems in waitForApi methods other async / awaits * pagination tests * more tries * disable selenium promise manager * try to fix shared-links tests * re-enable selenium_promise_manager and some more fixes * add target es2017 to e2e * set target to es2017 on tsconfig.spec.json * other tries * forgotten console.log * disable pagination tests * some fixes for pagination * temporary fix viewer actions tests * fix some actions tests * fix some tests for actions * fix some tests for undo action * try to fix some more tests * fixes for toolbar actions * fix NoSuchElementError for openMoreMenu * fix NoSuchElementError for rightClickOnMultipleSelection * fixes for mark as favourite * more fixes * more fixes * change order of some expects * forgot describe
This commit is contained in:
committed by
Denys Vuika
parent
0d4795bfa8
commit
7d73ae309c
@@ -60,13 +60,11 @@ describe('Login', () => {
|
||||
const newPassword = 'new password';
|
||||
|
||||
beforeAll(async (done) => {
|
||||
await Promise.all([
|
||||
peopleApi.createUser({ username: testUser }),
|
||||
peopleApi.createUser(russianUser),
|
||||
peopleApi.createUser(johnDoe),
|
||||
peopleApi.createUser({ username: disabledUser }),
|
||||
peopleApi.createUser(testUser2)
|
||||
]);
|
||||
await peopleApi.createUser({ username: testUser });
|
||||
await peopleApi.createUser(russianUser);
|
||||
await peopleApi.createUser(johnDoe);
|
||||
await peopleApi.createUser({ username: disabledUser });
|
||||
await peopleApi.createUser(testUser2);
|
||||
await peopleApi.disableUser(disabledUser);
|
||||
done();
|
||||
});
|
||||
@@ -114,7 +112,7 @@ describe('Login', () => {
|
||||
const { username, firstName, lastName } = johnDoe;
|
||||
|
||||
await loginPage.loginWith(username);
|
||||
expect(userInfo.name).toEqual(`${firstName} ${lastName}`);
|
||||
expect(await userInfo.getName()).toEqual(`${firstName} ${lastName}`);
|
||||
});
|
||||
|
||||
it(`logs in with user having username containing "@" - [C213096]`, async () => {
|
||||
@@ -126,9 +124,10 @@ describe('Login', () => {
|
||||
const { username, password } = russianUser;
|
||||
|
||||
await loginPage.loginWith(username, password);
|
||||
expect(browser.getCurrentUrl()).toContain(APP_ROUTES.PERSONAL_FILES);
|
||||
expect(await browser.getCurrentUrl()).toContain(APP_ROUTES.PERSONAL_FILES);
|
||||
});
|
||||
|
||||
// TODO: ACA-245
|
||||
xit('redirects to Home Page when navigating to the Login page while already logged in - [C213107]', async () => {
|
||||
const { username } = johnDoe;
|
||||
|
||||
|
Reference in New Issue
Block a user