mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-09 16:10:11 -06:00
chore(deps): Update dependency eslint to version 6.8.0 🌟 (#6509)
* chore(deps): Update eslint to 6.8.0 🌟 * fix missing dangling commas for linter * fix missing dangling commas for linter * more lint fixes * yarn lock Co-authored-by: WhiteSource Renovate <renovatebot@gmail.com> Co-authored-by: Jennifer Shehane <shehane.jennifer@gmail.com>
This commit is contained in:
@@ -22,7 +22,7 @@ describe('Proxy', () => {
|
||||
proxy.start(3333)
|
||||
.then((proxy1) => {
|
||||
this.proxy = proxy1
|
||||
})
|
||||
}),
|
||||
)
|
||||
})
|
||||
|
||||
@@ -30,7 +30,7 @@ describe('Proxy', () => {
|
||||
return Promise.join(
|
||||
httpServer.stop(),
|
||||
httpsServer.stop(),
|
||||
proxy.stop()
|
||||
proxy.stop(),
|
||||
)
|
||||
})
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ describe('lib/ca', () => {
|
||||
it('creates certs + keys dir', function () {
|
||||
return Promise.join(
|
||||
fs.statAsync(path.join(this.dir, 'certs')),
|
||||
fs.statAsync(path.join(this.dir, 'keys'))
|
||||
fs.statAsync(path.join(this.dir, 'keys')),
|
||||
)
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user