diff options
Diffstat (limited to 'vid-webpack-master/cypress/plugins/index.js')
-rw-r--r-- | vid-webpack-master/cypress/plugins/index.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vid-webpack-master/cypress/plugins/index.js b/vid-webpack-master/cypress/plugins/index.js new file mode 100644 index 00000000..4170a8f4 --- /dev/null +++ b/vid-webpack-master/cypress/plugins/index.js @@ -0,0 +1,6 @@ +const cypressTypeScriptPreprocessor = require('./cy-ts-preprocessor') +module.exports = on => { + on('file:preprocessor', cypressTypeScriptPreprocessor); + on('fail', (err, runnable) => {return false}); +}; + |