Files
cypress/system-tests/projects/sourcemaps/cypress-disabled.config.js
Ryan Manuel 41272643aa chore: add a private method on Cypress that tracks whether source maps are available (#32140)
* chore: add a private method on Cypress that tracks whether source maps are enabled

* refactor

* oops

* refactor
2025-08-04 08:50:59 -05:00

12 lines
212 B
JavaScript

module.exports = {
e2e: {
supportFile: false,
setupNodeEvents (on, config) {
require('./cypress-preprocessor.config.js')(on, config)
},
},
env: {
areSourceMapsAvailable: false,
},
}