mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-20 23:28:42 -05:00
771f7654be
* fix: allow migration of code-coverage plugin * fix: use 9.X options to default migration * fix: remove internal values from options * test: add unit tests to the new model * test: e2e test all error prone defaultValues * fix: avoid removing values in pluginsFile * test: fix tests * test: fix test * fix unit test
17 lines
404 B
JavaScript
17 lines
404 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
retries: {
|
|
runMode: 1,
|
|
openMode: 0,
|
|
},
|
|
e2e: {
|
|
// We've imported your old cypress plugins here.
|
|
// You may want to clean this up later by importing these.
|
|
setupNodeEvents (on, config) {
|
|
return require('./cypress/plugins/index.js')(on, config)
|
|
},
|
|
specPattern: 'tests/e2e/**/*.js',
|
|
},
|
|
})
|