diff --git a/packages/auth/test/integration/webdriver/redirect.test.ts b/packages/auth/test/integration/webdriver/redirect.test.ts index 3c3616dc796..250dd0ba4af 100644 --- a/packages/auth/test/integration/webdriver/redirect.test.ts +++ b/packages/auth/test/integration/webdriver/redirect.test.ts @@ -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); @@ -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);