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

34
node_modules/browserify/test/circular.js generated vendored Normal file
View File

@@ -0,0 +1,34 @@
var browserify = require('../');
var vm = require('vm');
var test = require('tap').test;
test('circular', function (t) {
t.plan(1);
var b = browserify(__dirname + '/circular/main.js');
b.bundle(function (err, src) {
vm.runInNewContext(src, { t: t });
});
});
test('circular expose', function (t) {
t.plan(1);
var b = browserify(__dirname + '/circular/main.js');
b.require(__dirname + '/circular/a.js', { expose: './a.js' });
b.require(__dirname + '/circular/b.js', { expose: './b.js' });
b.bundle(function (err, src) {
vm.runInNewContext(src, { t: t });
});
});
test('circular require', function (t) {
t.plan(1);
var b = browserify(__dirname + '/circular/main.js');
b.require(__dirname + '/circular/a.js');
b.require(__dirname + '/circular/b.js');
b.bundle(function (err, src) {
vm.runInNewContext(src, { t: t });
});
});