Fix js lint
This commit is contained in:
parent
940d77b9a0
commit
40b35a991f
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue