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.type()).toBe('beforeunload');
expect(dialog.defaultValue()).toBe(''); expect(dialog.defaultValue()).toBe('');
if (isChrome) expect(dialog.message()).toBe(''); if (isChrome) expect(dialog.message()).toBe('');
else else expect(dialog.message()).toBeTruthy();
expect(dialog.message()).toBe(
'This page is asking you to confirm that you want to leave - data you have entered may not be saved.'
);
await dialog.accept(); await dialog.accept();
await pageClosingPromise; await pageClosingPromise;
}); });