Skip to content

Commit

Permalink
test: remove duplicate test that is causing hang in Windows (#35071)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkleinsc committed Jul 26, 2022
1 parent 77e1a04 commit 182ab9a
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions spec/chromium-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 182ab9a

Please sign in to comment.