Browse Source

test: disable flaky transparent window test (#35708)

Co-authored-by: Jeremy Rose <[email protected]>
trop[bot] 2 years ago
parent
commit
08c02d2013
1 changed files with 2 additions and 1 deletions
  1. 2 1
      spec-main/api-browser-window-spec.ts

+ 2 - 1
spec-main/api-browser-window-spec.ts

@@ -2068,7 +2068,8 @@ describe('BrowserWindow module', () => {
       }).to.not.throw();
     });
 
-    it('Allows setting a transparent window via CSS', async () => {
+    // TODO(nornagon): disabled due to flakiness.
+    it.skip('Allows setting a transparent window via CSS', async () => {
       const appPath = path.join(__dirname, 'fixtures', 'apps', 'background-color-transparent');
 
       appProcess = childProcess.spawn(process.execPath, [appPath]);