File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed
packages/auth/test/integration/webdriver Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -332,9 +332,11 @@ browserDescribe('WebDriver redirect IdP test', driver => {
332
332
expect ( user . email ) . to . eq ( user1 . email ) ;
333
333
} ) ;
334
334
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
+
338
340
// Sign in using pre-poulated user
339
341
await driver . callNoWait ( RedirectFunction . IDP_REDIRECT ) ;
340
342
@@ -357,9 +359,11 @@ browserDescribe('WebDriver redirect IdP test', driver => {
357
359
) ;
358
360
} ) ;
359
361
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
+
363
367
await driver . callNoWait ( RedirectFunction . IDP_REDIRECT ) ;
364
368
const widget = new IdPPage ( driver . webDriver ) ;
365
369
You can’t perform that action at this time.
0 commit comments