mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
c5cfdd4849
PR-URL: https://github.com/nodejs/node/pull/52609 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Daniel Lemire <daniel@lemire.me> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
15 lines
422 B
JavaScript
15 lines
422 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('node:assert').strict;
|
|
const childProcess = require('node:child_process');
|
|
const fixtures = require('../common/fixtures');
|
|
|
|
const child = childProcess.spawnSync(
|
|
process.execPath,
|
|
[ '--no-warnings', '--run', 'non-existent-command'],
|
|
{ cwd: fixtures.path('run-script'), encoding: 'utf8' },
|
|
);
|
|
assert.strictEqual(child.status, 1);
|
|
console.log(child.stderr);
|