mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-01 04:20:23 -05:00
bb8251b752
Co-authored-by: Tim Griesser <tgriesser10@gmail.com>
13 lines
247 B
JavaScript
13 lines
247 B
JavaScript
module.exports = {
|
|
'integrationFolder': 'cypress/tests',
|
|
'e2e': {
|
|
setupNodeEvents (on, config) {
|
|
const webpackPreprocessor = require('./index')
|
|
|
|
on('file:preprocessor', webpackPreprocessor())
|
|
|
|
return config
|
|
},
|
|
},
|
|
}
|