diff options
Diffstat (limited to 'tests/node_compat/test/parallel/test-child-process-stdout-flush-exit.js')
-rw-r--r-- | tests/node_compat/test/parallel/test-child-process-stdout-flush-exit.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/node_compat/test/parallel/test-child-process-stdout-flush-exit.js b/tests/node_compat/test/parallel/test-child-process-stdout-flush-exit.js index 585cc6084..58e97eb43 100644 --- a/tests/node_compat/test/parallel/test-child-process-stdout-flush-exit.js +++ b/tests/node_compat/test/parallel/test-child-process-stdout-flush-exit.js @@ -27,7 +27,7 @@ // USE OR OTHER DEALINGS IN THE SOFTWARE. // TODO(PolarETech): The process.argv[3] check should be argv[2], -// the args passed to spawn() should not need to include "require.ts", +// the args passed to spawn() should not need to include "runner.ts", // and the process.argv[2] passed to spawn() should be argv[1]. 'use strict'; @@ -48,7 +48,7 @@ if (process.argv[3] === 'child') { const spawn = require('child_process').spawn; // spawn self as child - const child = spawn(process.argv[0], ['require.ts', process.argv[2], 'child']); + const child = spawn(process.argv[0], ['runner.ts', process.argv[2], 'child']); let stdout = ''; |