diff --git a/spec/api-browser-window-spec.ts b/spec/api-browser-window-spec.ts index 3e8c384f74..06af2cf2d8 100755 --- a/spec/api-browser-window-spec.ts +++ b/spec/api-browser-window-spec.ts @@ -2135,12 +2135,6 @@ describe('BrowserWindow module', () => { expect(w.fullScreen).to.be.true(); }); - // FIXME: this test needs to be fixed and re-enabled. - it.skip('does not go fullscreen if roundedCorners are enabled', async () => { - w = new BrowserWindow({ frame: false, roundedCorners: false, fullscreen: true }); - expect(w.fullScreen).to.be.false(); - }); - it('can be changed', () => { w.fullScreen = false; expect(w.fullScreen).to.be.false();