Fix js lint

This commit is contained in:
Cheng Zhao 2017-03-16 19:51:43 +09:00
parent 940d77b9a0
commit 40b35a991f

View file

@ -600,7 +600,7 @@ describe('chromium feature', function () {
}) })
it('Worker has node integration with nodeIntegrationInWorker', function (done) { it('Worker has node integration with nodeIntegrationInWorker', function (done) {
let webview = new WebView let webview = new WebView()
webview.addEventListener('ipc-message', function (e) { webview.addEventListener('ipc-message', function (e) {
assert.equal(e.channel, 'object function object function') assert.equal(e.channel, 'object function object function')
webview.remove() webview.remove()
@ -630,7 +630,7 @@ describe('chromium feature', function () {
}) })
it('SharedWorker has node integration with nodeIntegrationInWorker', function (done) { it('SharedWorker has node integration with nodeIntegrationInWorker', function (done) {
let webview = new WebView let webview = new WebView()
webview.addEventListener('console-message', function (e) { webview.addEventListener('console-message', function (e) {
console.log(e) console.log(e)
}) })