From 62fbe64f540cd78ba8c3181ba299be03436e0739 Mon Sep 17 00:00:00 2001 From: Eduard Frankford <e.frankford@student.uibk.ac.at> Date: Sun, 29 May 2022 13:58:46 +0200 Subject: [PATCH] e2e test --- .gitlab-ci.yml | 2 ++ src/test/javascript/e2e/account/account.spec.ts | 1 + 2 files changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4c1f778f2..d3c04bbdc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -101,6 +101,8 @@ frontend-test: e2e-test: stage: test cache: {} + dependencies: + - frontend-test script: - npm run e2e # sonar-analyze: diff --git a/src/test/javascript/e2e/account/account.spec.ts b/src/test/javascript/e2e/account/account.spec.ts index 59e9cc1aa..5be73b816 100644 --- a/src/test/javascript/e2e/account/account.spec.ts +++ b/src/test/javascript/e2e/account/account.spec.ts @@ -18,6 +18,7 @@ describe('account', () => { }); it('should fail to login with bad password', async () => { + console.log('I am alive'); signInPage = await navBarPage.getSignInPage(); await signInPage.autoSignInUsing(username, 'foo'); -- GitLab