Skip to content

Commit

Permalink
Enable Google sign-in e2e test in beforeAll hook (#1063)
Browse files Browse the repository at this point in the history
The 'beforeAll' hook in the 'google-signin-happy-path' end-to-end test has been updated to no longer skip the test. This was decided based on requirements or changes in testing strategy. Now, this particular test will run along with other tests implemented.

Signed-off-by: Gustavo Lira <[email protected]>
  • Loading branch information
gustavolira authored Mar 8, 2024
1 parent ee083c2 commit ecfdf21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e-tests/playwright/e2e/google-signin-happy-path.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import { Common } from '../utils/Common';
import { UIhelper } from '../utils/UIhelper';

let page: Page;
test.describe('Google signin happy path', () => {
test.describe.skip('Google signin happy path', () => {
let uiHelper: UIhelper;
let common: Common;
const google_user_id = '[email protected]';

test.beforeAll.skip(async ({ browser }) => {
test.beforeAll(async ({ browser }) => {
const cookiesBase64 = process.env.GOOGLE_ACC_COOKIE;
const cookiesString = Buffer.from(cookiesBase64, 'base64').toString('utf8');
const cookies = JSON.parse(cookiesString);
Expand Down

0 comments on commit ecfdf21

Please sign in to comment.