Files
cypress/npm/webpack-preprocessor/cypress.config.js
T
Alejandro Estrada bb8251b752 feat: Use plugins on config files (#18798)
Co-authored-by: Tim Griesser <tgriesser10@gmail.com>
2021-11-16 14:45:26 -05:00

13 lines
247 B
JavaScript

module.exports = {
'integrationFolder': 'cypress/tests',
'e2e': {
setupNodeEvents (on, config) {
const webpackPreprocessor = require('./index')
on('file:preprocessor', webpackPreprocessor())
return config
},
},
}