Skip to content

Commit c3266f8

Browse files
authored
Re-enable auth redirect tests (#8803)
* Re-enable redirect tests * Fix lint
1 parent 604133f commit c3266f8

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

packages/auth/test/integration/webdriver/redirect.test.ts

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -332,11 +332,7 @@ browserDescribe('WebDriver redirect IdP test', driver => {
332332
expect(user.email).to.eq(user1.email);
333333
});
334334

335-
it('reauthenticate throws for wrong user', async function () {
336-
// Test is ignored for now as it fails on Chrome version 111+.
337-
// TODO(b/297245662): Investigate and unskip the test.
338-
this.skip();
339-
335+
it('reauthenticate throws for wrong user', async () => {
340336
// Sign in using pre-populated user
341337
await driver.callNoWait(RedirectFunction.IDP_REDIRECT);
342338

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

362-
it('handles aborted sign ins', async function () {
363-
// Test is ignored for now as it fails on Chrome version 111+.
364-
// TODO(b/297245662): Investigate and unskip the test.
365-
this.skip();
366-
358+
it('handles aborted sign ins', async () => {
367359
await driver.callNoWait(RedirectFunction.IDP_REDIRECT);
368360
const widget = new IdPPage(driver.webDriver);
369361

0 commit comments

Comments
 (0)