refactor: init cypress-cucumber-preprocessor install.
This commit is contained in:
22
node_modules/browserify/test/global_recorder.js
generated
vendored
Normal file
22
node_modules/browserify/test/global_recorder.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
var browserify = require('../');
|
||||
var vm = require('vm');
|
||||
var test = require('tap').test;
|
||||
|
||||
test('recorded global tr', function (t) {
|
||||
t.plan(6);
|
||||
|
||||
var b = browserify(__dirname + '/global_recorder/main.js');
|
||||
var context = {
|
||||
console: { log: function (msg) { t.equal(msg, 'wow') } }
|
||||
};
|
||||
b.bundle(function (err, src) {
|
||||
t.ifError(err);
|
||||
vm.runInNewContext(src, context);
|
||||
t.equal(b._recorded.length, 2);
|
||||
b.bundle(function (err, src) {
|
||||
t.ifError(err);
|
||||
vm.runInNewContext(src, context);
|
||||
t.equal(b._recorded.length, 2);
|
||||
});
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user