From 182ab9ad7646ccf42b25e539990f8cb0c40f68b5 Mon Sep 17 00:00:00 2001 From: John Kleinschmidt Date: Tue, 26 Jul 2022 13:28:59 -0400 Subject: [PATCH] test: remove duplicate test that is causing hang in Windows (#35071) --- spec/chromium-spec.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/spec/chromium-spec.js b/spec/chromium-spec.js index 2b213f45937c..154dffaff8eb 100644 --- a/spec/chromium-spec.js +++ b/spec/chromium-spec.js @@ -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');