Files
cypress/npm/react/plugins/react-scripts/index.js
2020-10-01 13:54:22 +03:00

10 lines
314 B
JavaScript

const filePreprocessor = require('../cra-v3/file-preprocessor')
module.exports = (on, config) => {
require('@cypress/code-coverage/task')(on, config)
on('file:preprocessor', filePreprocessor(config))
// IMPORTANT to return the config object
// with the any changed environment variables
return config
}