refactor: init cypress-cucumber-preprocessor install.
This commit is contained in:
16
node_modules/browserify/test/comment.js
generated
vendored
Normal file
16
node_modules/browserify/test/comment.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
var browserify = require('../');
|
||||
var vm = require('vm');
|
||||
var test = require('tap').test;
|
||||
|
||||
test('trailing comment', function (t) {
|
||||
t.plan(1);
|
||||
var b = browserify(__dirname + '/comment/main.js');
|
||||
b.bundle(function (err, src) {
|
||||
var c = {
|
||||
ex : function (obj) {
|
||||
t.same(obj, 1234);
|
||||
}
|
||||
};
|
||||
vm.runInNewContext(src, c);
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user