UNPKG

314 BJavaScriptView Raw
1const filePreprocessor = require('../cra-v3/file-preprocessor')
2
3module.exports = (on, config) => {
4 require('@cypress/code-coverage/task')(on, config)
5 on('file:preprocessor', filePreprocessor(config))
6 // IMPORTANT to return the config object
7 // with the any changed environment variables
8 return config
9}