Skip to content

Commit 12542d8

Browse files
committed
increase timeout for the aborted sign in test.
1 parent 4481a91 commit 12542d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ browserDescribe('Popup IdP tests', driver => {
351351
);
352352
});
353353

354-
/*it('handles aborted sign ins', async () => {
354+
it('handles aborted sign ins', async () => {
355355
await driver.callNoWait(PopupFunction.IDP_POPUP);
356356
await driver.selectPopupWindow();
357357
const widget = new IdPPage(driver.webDriver);
@@ -396,6 +396,6 @@ browserDescribe('Popup IdP tests', driver => {
396396
user = await driver.getUserSnapshot();
397397
expect(user.uid).to.eq(user1.uid);
398398
expect(user.email).to.eq(user1.email);
399-
}).timeout(12_000);*/ // Test takes a while due to the closed-by-user errors
399+
}).timeout(25_000); // Test takes a while due to the closed-by-user errors
400400
});
401401
});

0 commit comments

Comments
 (0)