12 строки
318 B
JavaScript
12 строки
318 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 } = require('worker_threads');
|
|
|
|
new Worker(path.resolve(process.cwd(), process.argv[2]))
|
|
.on('exit', (code) => process.exitCode = code);
|