chore: improve "Page.close should run beforeunload if asked for" unit test for Firefox (#6995)

This commit is contained in:
Henrik Skupin 2021-03-16 15:35:32 +01:00 committed by GitHub
parent 5f24f60819
commit bf60a300e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,10 +67,7 @@ describe('Page', function () {
expect(dialog.type()).toBe('beforeunload');
expect(dialog.defaultValue()).toBe('');
if (isChrome) expect(dialog.message()).toBe('');
else
expect(dialog.message()).toBe(
'This page is asking you to confirm that you want to leave - data you have entered may not be saved.'
);
else expect(dialog.message()).toBeTruthy();
await dialog.accept();
await pageClosingPromise;
});