build: update eslint + eslint plugins (#22777)

* build: run eslint --fix

* chore: manually fix all hasOwnProperty errors

* chore: manually fix all void 0 vs undefined errors

* chore: manually fix all async-in-promise errors

* chore: manually fix lexical declaration in case block
This commit is contained in:
Samuel Attard 2020-03-20 08:12:18 -07:00 committed by GitHub
parent 42f138282f
commit b87b501161
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
62 changed files with 280 additions and 280 deletions

View file

@ -235,7 +235,7 @@ describe('webContents module', () => {
})
it('executes after page load', (done) => {
w.webContents.executeJavaScript(`(() => "test")()`).then(result => {
w.webContents.executeJavaScript('(() => "test")()').then(result => {
expect(result).to.equal('test')
done()
})
@ -727,15 +727,15 @@ describe('webContents module', () => {
const w = new BrowserWindow({ show: false })
expect(() => {
w.webContents.startDrag({ icon: path.join(fixturesPath, 'assets', 'logo.png') } as any)
}).to.throw(`Must specify either 'file' or 'files' option`)
}).to.throw('Must specify either \'file\' or \'files\' option')
expect(() => {
w.webContents.startDrag({ file: __filename } as any)
}).to.throw(`Must specify non-empty 'icon' option`)
}).to.throw('Must specify non-empty \'icon\' option')
expect(() => {
w.webContents.startDrag({ file: __filename, icon: __filename })
}).to.throw(`Must specify non-empty 'icon' option`)
}).to.throw('Must specify non-empty \'icon\' option')
})
})
@ -1561,7 +1561,7 @@ describe('webContents module', () => {
marginsType: 'terrible',
scaleFactor: 'not-a-number',
landscape: [],
pageRanges: { 'oops': 'im-not-the-right-key' },
pageRanges: { oops: 'im-not-the-right-key' },
headerFooter: '123',
printSelectionOnly: 1,
printBackground: 2,
@ -1783,7 +1783,7 @@ describe('webContents module', () => {
cb(user, pass)
})
await w.loadURL(serverUrl)
const body = await w.webContents.executeJavaScript(`document.documentElement.textContent`)
const body = await w.webContents.executeJavaScript('document.documentElement.textContent')
expect(body).to.equal(`Basic ${Buffer.from(`${user}:${pass}`).toString('base64')}`)
expect(eventRequest.url).to.equal(serverUrl + '/')
expect(eventAuthInfo.isProxy).to.be.false()
@ -1807,7 +1807,7 @@ describe('webContents module', () => {
cb(user, pass)
})
await w.loadURL(`${serverUrl}/no-auth`)
const body = await w.webContents.executeJavaScript(`document.documentElement.textContent`)
const body = await w.webContents.executeJavaScript('document.documentElement.textContent')
expect(body).to.equal(`Basic ${Buffer.from(`${user}:${pass}`).toString('base64')}`)
expect(eventRequest.url).to.equal(`${serverUrl}/no-auth`)
expect(eventAuthInfo.isProxy).to.be.true()
@ -1824,7 +1824,7 @@ describe('webContents module', () => {
cb()
})
await w.loadURL(serverUrl)
const body = await w.webContents.executeJavaScript(`document.documentElement.textContent`)
const body = await w.webContents.executeJavaScript('document.documentElement.textContent')
expect(body).to.equal('401')
})
})