node/tools/run-worker.js
Darshan Sen f778fa230b
test: test crypto.setEngine() using an actual engine
Signed-off-by: Darshan Sen <darshan.sen@postman.com>

PR-URL: https://github.com/nodejs/node/pull/40481
Reviewed-By: James M Snell <jasnell@gmail.com>
2021-11-25 11:33:41 +00:00

11 lines
349 B
JavaScript

'use strict';
if (typeof require === 'undefined') {
console.log('1..0 # Skipped: Not being run as CommonJS');
process.exit(0);
}
const path = require('path');
const { Worker, SHARE_ENV } = require('worker_threads');
new Worker(path.resolve(process.cwd(), process.argv[2]), { env: SHARE_ENV })
.on('exit', (code) => process.exitCode = code);