[AAE-8147] e2e jasmine callbacks removal (#2490)

* [AAE-8147] e2e jasmine callbacks removal

* trigger travis
This commit is contained in:
rafalszmit
2022-03-30 16:20:13 +02:00
committed by GitHub
parent 31d677c12d
commit 9f0f4cc61f
52 changed files with 199 additions and 409 deletions

View File

@@ -48,7 +48,7 @@ describe('Generic errors', () => {
const adminApiActions = new AdminActions();
const userActions = new UserActions();
beforeAll(async (done) => {
beforeAll(async () => {
try {
await adminApiActions.createUser({ username });
await adminApiActions.createUser({ username: username2 });
@@ -61,7 +61,6 @@ describe('Generic errors', () => {
} catch (error) {
Logger.error(`----- beforeAll failed : ${error}`);
}
done();
});
afterAll(async () => {