Browse Source

Merge pull request #5445 from electron/fix-flaky-tests

Suppress the window.open tests on travis CI's mac machine
Cheng Zhao 9 years ago
parent
commit
4841e37502
1 changed files with 4 additions and 0 deletions
  1. 4 0
      spec/chromium-spec.js

+ 4 - 0
spec/chromium-spec.js

@@ -155,6 +155,10 @@ describe('chromium feature', function () {
   })
 
   describe('window.open', function () {
+    if (process.env.TRAVIS === 'true' && process.platform === 'darwin') {
+      return
+    }
+
     this.timeout(20000)
 
     it('returns a BrowserWindowProxy object', function () {