weblogin1/node_modules/pstree.remy/tests/fixtures/index.js
Kántor Dániel 0881028595 feltoltes
2023-01-27 11:54:37 +01:00

14 lines
282 B
JavaScript

const spawn = require('child_process').spawn;
function run() {
spawn(
'sh',
['-c', 'node -e "setInterval(() => console.log(`running`), 200)"'],
{
stdio: 'pipe',
}
);
}
var runCallCount = process.argv[2] || 1;
for (var i = 0; i < runCallCount; i++) run();