blob: 4170a8f4b82e45c5df2415982fa688a0d7c32d0c (
plain)
1
2
3
4
5
6
|
const cypressTypeScriptPreprocessor = require('./cy-ts-preprocessor')
module.exports = on => {
on('file:preprocessor', cypressTypeScriptPreprocessor);
on('fail', (err, runnable) => {return false});
};
|