Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading