mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-23 15:39:28 -05: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:
@@ -24,7 +24,7 @@ describe('bump', () => {
|
||||
la(
|
||||
R.equals(filtered, projects),
|
||||
'should have kept all projects',
|
||||
filtered
|
||||
filtered,
|
||||
)
|
||||
})
|
||||
|
||||
@@ -34,7 +34,7 @@ describe('bump', () => {
|
||||
la(
|
||||
projects.length,
|
||||
'there should be at least a few projects in the list of projects',
|
||||
projects
|
||||
projects,
|
||||
)
|
||||
|
||||
const filter = bump.getFilterByProvider('circle', 'darwin')
|
||||
|
||||
@@ -140,7 +140,7 @@ describe('move-binaries', () => {
|
||||
.withArgs(
|
||||
`${latestMacBuild}cypress.zip`,
|
||||
'desktop/3.3.0/darwin-x64/cypress.zip',
|
||||
aws.bucket
|
||||
aws.bucket,
|
||||
)
|
||||
.resolves()
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@ describe('upload', () => {
|
||||
la(
|
||||
folder === 'desktop/3.3.0/darwin-x64/',
|
||||
'wrong upload desktop folder',
|
||||
folder
|
||||
folder,
|
||||
)
|
||||
})
|
||||
})
|
||||
|
||||
@@ -67,7 +67,7 @@ describe('packages', () => {
|
||||
}),
|
||||
},
|
||||
},
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
const res = await packages.getPackagesWithScript('build')
|
||||
|
||||
@@ -23,7 +23,7 @@ describe('konfig check', () => {
|
||||
!cwd.includes(join('packages', 'server')),
|
||||
'process CWD is set to',
|
||||
cwd,
|
||||
'for some reason'
|
||||
'for some reason',
|
||||
)
|
||||
// if the above assertion breaks, it means some script in binary scripts
|
||||
// loads "lib/konfig" directly, which unexpectedly changes the CWD.
|
||||
@@ -38,7 +38,7 @@ describe('konfig check', () => {
|
||||
'previous cwd',
|
||||
cwd,
|
||||
'differs after loading konfig',
|
||||
cwdAfter
|
||||
cwdAfter,
|
||||
)
|
||||
|
||||
la(is.fn(konfig), 'expected konfig to be a function', konfig)
|
||||
|
||||
Reference in New Issue
Block a user