test: remove duplicate test that is causing hang in Windows (#35071)

This commit is contained in:
John Kleinschmidt 2022-07-26 13:28:59 -04:00 committed by GitHub
parent 77e1a046ec
commit 182ab9ad76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -62,14 +62,6 @@ describe('chromium feature', () => {
});
describe('window.open', () => {
it('accepts "nodeIntegration" as feature', async () => {
const message = waitForEvent(window, 'message');
const b = window.open(`file://${fixtures}/pages/window-opener-node.html`, '', 'nodeIntegration=no,show=no');
const event = await message;
b.close();
expect(event.data.isProcessGlobalUndefined).to.be.true();
});
it('inherit options of parent window', async () => {
const message = waitForEvent(window, 'message');
const b = window.open(`file://${fixtures}/pages/window-open-size.html`, '', 'show=no');