Sha256: fc5d155cf31c95eab70a56600f25d88695a5c950167c743d9fa30d9b848d2162
Contents?: true
Size: 630 Bytes
Versions: 7
Compression:
Stored size: 630 Bytes
Contents
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); }); }); });
Version data entries
7 entries across 7 versions & 2 rubygems