Skip to content

Commit 5c9442d

Browse files
committed
Fix Lint
1 parent 68abda0 commit 5c9442d

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

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

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

335-
// Test is ignored for now as it fails on Chrome version 111+.
336-
// TODO(b/297245662): Investigate and unskip the test.
337-
xit('reauthenticate throws for wrong user', async () => {
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+
338340
// Sign in using pre-poulated user
339341
await driver.callNoWait(RedirectFunction.IDP_REDIRECT);
340342

@@ -357,9 +359,11 @@ browserDescribe('WebDriver redirect IdP test', driver => {
357359
);
358360
});
359361

360-
// Test is ignored for now as it fails on Chrome version 111+.
361-
// TODO(b/297245662): Investigate and unskip the test.
362-
xit('handles aborted sign ins', async () => {
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+
363367
await driver.callNoWait(RedirectFunction.IDP_REDIRECT);
364368
const widget = new IdPPage(driver.webDriver);
365369

0 commit comments

Comments
 (0)