mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-05 22:19:46 -06:00
* chore: add a private method on Cypress that tracks whether source maps are enabled * refactor * oops * refactor
12 lines
212 B
JavaScript
12 lines
212 B
JavaScript
module.exports = {
|
|
e2e: {
|
|
supportFile: false,
|
|
setupNodeEvents (on, config) {
|
|
require('./cypress-preprocessor.config.js')(on, config)
|
|
},
|
|
},
|
|
env: {
|
|
areSourceMapsAvailable: false,
|
|
},
|
|
}
|