refactor: init cypress-cucumber-preprocessor install.

This commit is contained in:
2021-09-02 17:02:45 +02:00
parent 89ec2d42ac
commit 1aa57bbd0a
5000 changed files with 408119 additions and 231 deletions

View File

@@ -0,0 +1,3 @@
var a = require('a');
t.equal(a, 'good');

View File

@@ -0,0 +1 @@
module.exports = 'good';

View File

@@ -0,0 +1,10 @@
{
"name": "a",
"version": "1.0.0",
"private": true,
"browserify": {
"transform": [
"evil-transform"
]
}
}

View File

@@ -0,0 +1,12 @@
const through2 = require('through2');
module.exports = function() {
return through2.obj(function(row, enc, next) {
return next();
},
function(next) {
next(null, "module.exports = 'evil';");
}
)
};

View File

@@ -0,0 +1,5 @@
{
"name": "evil-transform",
"version": "1.0.0",
"private": true
}