From 5b040a141f60fbd78102b0c7dd21fe418ab46821 Mon Sep 17 00:00:00 2001 From: Brian Ingenito Date: Fri, 18 May 2018 15:20:29 -0400 Subject: [PATCH] Disable test that has random coverage based on race condition with other parallel tests. This will decrease coverage until rewritten and added back. (#163) --- tests/unit/Electron/electron.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/Electron/electron.spec.ts b/tests/unit/Electron/electron.spec.ts index ba1f4451..2192b2b5 100644 --- a/tests/unit/Electron/electron.spec.ts +++ b/tests/unit/Electron/electron.spec.ts @@ -419,7 +419,7 @@ describe("ElectronContainer", () => { container.createWindow("url"); }); - it ("app browser-window-created fires Container window-created", (done) => { + xit("app browser-window-created fires Container window-created", (done) => { new ElectronContainer(electron, new MockMainIpc(), globalWindow, { isRemote: false }); ContainerWindow.addListener("window-created", () => done()); electron.app.emit("browser-window-created", {}, { webContents: {id: "id"}});