Sha256: 6e45cb510c1d13bd2dd29fbda1adbac9a4a660f7191a62c72c9dcfe2d36e7f22
Contents?: true
Size: 646 Bytes
Versions: 7
Compression:
Stored size: 646 Bytes
Contents
var test = require('tap').test; var spawn = require('child_process').spawn; var path = require('path'); var vm = require('vm'); test('retarget with -r', function (t) { t.plan(2); var ps = spawn(process.execPath, [ path.resolve(__dirname, '../bin/cmd.js'), '-r', 'beep' ], { cwd: __dirname }); var src = ''; ps.stdout.on('data', function (buf) { src += buf }); ps.stderr.pipe(process.stderr); ps.on('exit', function (code) { t.equal(code, 0); var c = {}; vm.runInNewContext(src, c); t.equal(c.require('beep'), 'boop'); }); ps.stdin.end(); });
Version data entries
7 entries across 7 versions & 2 rubygems