🔧 Spec: Fix style issues

This commit is contained in:
Felix Rieseberg 2017-11-23 14:22:43 -08:00
parent 0278e380de
commit 9f0df695ca
13 changed files with 49 additions and 5 deletions

View file

@ -9,6 +9,9 @@ const {closeWindow} = require('./window-helpers')
const isCI = remote.getGlobal('isCi')
const nativeModulesEnabled = remote.getGlobal('nativeModulesEnabled')
/* Most of the APIs here don't use standard callbacks */
/* eslint-disable standard/no-callback-literal */
describe('<webview> tag', function () {
this.timeout(3 * 60 * 1000)
@ -1423,7 +1426,7 @@ describe('<webview> tag', function () {
})
webview.style.display = 'none'
webview.offsetHeight
webview.offsetHeight // eslint-disable-line
webview.style.display = 'block'
})
webview.src = `file://${fixtures}/pages/a.html`
@ -1442,7 +1445,7 @@ describe('<webview> tag', function () {
})
webview.style.display = 'none'
webview.offsetHeight
webview.offsetHeight // eslint-disable-line
webview.style.display = 'block'
})
webview.src = `file://${fixtures}/pages/a.html`