Skip to content

Commit

Permalink
Update Google signin happy path test (#1064)
Browse files Browse the repository at this point in the history
The commit removes the skip on 'beforeAll' hook in the 'google-signin-happy-path' end-to-end test. Now, the entire test, including this hook, will be run in our suite. This was done to align with updates in our testing strategy or requirements.

Signed-off-by: Gustavo Lira <guga.java@gmail.com>
  • Loading branch information
gustavolira committed Mar 8, 2024
1 parent 2cd94e2 commit 928aa4a
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 = 'rhdhtest@gmail.com';

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 928aa4a

Please sign in to comment.