HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //home/arjun/projects/buyercall/node_modules/browserify/test/tr_args.js
var test = require('tap').test;
var spawn = require('child_process').spawn;
var path = require('path');
var concat = require('concat-stream');
var vm = require('vm');

test('transform arguments', function (t) {
    t.plan(2);
    
    var ps = spawn(process.execPath, [
        path.resolve(__dirname, '../bin/cmd.js'),
        __dirname + '/tr_args/main.js',
        '-t', '[', __dirname + '/tr_args/tr.js', '-x', '1', ']'
    ]);
    
    ps.stderr.pipe(process.stderr);
    ps.stdout.pipe(concat(function (body) {
        vm.runInNewContext(body.toString('utf8'), { t: t });
    }));
    
    ps.on('exit', function (code) {
        t.equal(code, 0);
    });
});