test(nonStallingRawEvaluateInExistingMainContext): fix broken test (#6908)

This commit is contained in:
Joel Einbinder 2021-06-04 09:33:44 -07:00 committed by GitHub
parent 21b00d0bcc
commit e37c078ea6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,8 +44,11 @@ test.describe('non-stalling evaluate', () => {
});
await page.setContent('<iframe></iframe>');
const error = await errorPromise;
// bail out if we accidentally succeeded
if (error === 4)
return;
// Testing this as a race.
const success = error.message === 'Frame does not yet have a main execution context' || 'Frame is currently attempting a navigation';
const success = error.message === 'Frame does not yet have a main execution context' || error.message === 'Frame is currently attempting a navigation';
expect(success).toBeTruthy();
});
});