summaryrefslogtreecommitdiff
path: root/tests/registry/npm/@denotest/exec-file/1.0.0/index.js
blob: 0129483aa6160f2e3e4d0e8c59bb102d6150f5f0 (plain)
1
2
3
4
5
6
const child_process = require('child_process');
const path = require('path');

const execArgs = [path.join(__dirname, "exec-child.js")]
const buf = child_process.execFileSync(process.execPath, execArgs);
console.log(buf.toString().trim());