test: replace cypress-test-example-repos coverage + remove bump (#20186)

This commit is contained in:
Zach Bloomquist
2022-02-16 13:53:04 -05:00
committed by GitHub
parent e55974cc46
commit 42b0fce6dc
5 changed files with 39 additions and 46 deletions
-7
View File
@@ -19,13 +19,6 @@ const _PROVIDERS = {
'cypress-io/cypress-test-module-api',
'cypress-io/cypress-test-node-versions',
'cypress-io/cypress-test-ci-environments',
'cypress-io/cypress-test-example-repos',
],
darwin: [
'cypress-io/cypress-test-example-repos',
],
win32: [
'cypress-io/cypress-test-example-repos',
],
},
}
+3 -3
View File
@@ -29,7 +29,7 @@ describe('bump', () => {
)
})
it('returns a filter function for circle and darwin', () => {
it('returns a filter function for circle and linux', () => {
const projects = bump.remapProjects(bump._PROVIDERS)
la(
@@ -38,11 +38,11 @@ describe('bump', () => {
projects,
)
const filter = bump.getFilterByProvider('circle', 'darwin')
const filter = bump.getFilterByProvider('circle', 'linux')
const filtered = projects.filter(filter)
la(filtered.length, 'there should be at least a few projects', filtered)
snapshot('should have just circle and darwin projects', filtered)
snapshot('should have just circle and linux projects', filtered)
})
})
})