Skip to content

Commit

Permalink
Re-enable auth redirect tests (#8803)
Browse files Browse the repository at this point in the history
* Re-enable redirect tests

* Fix lint
  • Loading branch information
NhienLam authored Feb 20, 2025
1 parent 604133f commit c3266f8
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions packages/auth/test/integration/webdriver/redirect.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -332,11 +332,7 @@ browserDescribe('WebDriver redirect IdP test', driver => {
expect(user.email).to.eq(user1.email);
});

it('reauthenticate throws for wrong user', async function () {
// Test is ignored for now as it fails on Chrome version 111+.
// TODO(b/297245662): Investigate and unskip the test.
this.skip();

it('reauthenticate throws for wrong user', async () => {
// Sign in using pre-populated user
await driver.callNoWait(RedirectFunction.IDP_REDIRECT);

Expand All @@ -359,11 +355,7 @@ browserDescribe('WebDriver redirect IdP test', driver => {
);
});

it('handles aborted sign ins', async function () {
// Test is ignored for now as it fails on Chrome version 111+.
// TODO(b/297245662): Investigate and unskip the test.
this.skip();

it('handles aborted sign ins', async () => {
await driver.callNoWait(RedirectFunction.IDP_REDIRECT);
const widget = new IdPPage(driver.webDriver);

Expand Down

0 comments on commit c3266f8

Please sign in to comment.