mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-11 01:10:24 -06:00
* fix: update not supported plugins errors * Add tests * Add tests * Fix test * Update with feedback
13 lines
297 B
JavaScript
13 lines
297 B
JavaScript
module.exports = {
|
|
projectId: 'abc123',
|
|
experimentalInteractiveRunEvents: true,
|
|
e2e: {
|
|
setupNodeEvents (on, config) {
|
|
require('@cypress/code-coverage/task')(on, config)
|
|
on('file:preprocessor', require('@cypress/code-coverage/use-babelrc'))
|
|
|
|
return config
|
|
},
|
|
},
|
|
}
|