Browse Source

Merge pull request #8417 from electron/flaky-travis-specs

Disable flaky specs on Travis
Kevin Sawicki 8 years ago
parent
commit
dcbc10ac38
1 changed files with 2 additions and 0 deletions
  1. 2 0
      spec/webview-spec.js

+ 2 - 0
spec/webview-spec.js

@@ -1467,6 +1467,8 @@ describe('<webview> tag', function () {
     })
 
     it('can be manually resized with setSize even when attribute is present', done => {
+      if (process.env.TRAVIS === 'true') return done()
+
       w = new BrowserWindow({show: false, width: 200, height: 200})
       w.loadURL('file://' + fixtures + '/pages/webview-no-guest-resize.html')