We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ljharb
Learn more about funding links in repositories.
Report abuse
1 parent 19af506 commit d1987c0Copy full SHA for d1987c0
test/import.js
@@ -9,7 +9,7 @@ var assign = require('object.assign');
9
function tape(args, options) {
10
var bin = __dirname + '/../bin/tape';
11
12
- return spawn('node', [bin].concat(args.split(' ')), assign({ cwd: __dirname }, options));
+ return spawn(process.argv[0], [bin].concat(args.split(' ')), assign({ cwd: __dirname }, options));
13
}
14
15
tap.test('importing mjs files', function (t) {
0 commit comments