Sign in
◑
Theme
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/node-ci-2026-06-16
/
.
/
test
/
parallel
/
test-child-process-spawnsync-non-string-args.js
blob: 5ac14d821f7b0f5e5aea86dbba3b14b8d4e54b39 [
file
] [
edit
]
'use strict'
;
const
common
=
require
(
'../common'
);
const
{
spawnSync
}
=
require
(
'child_process'
);
const
stateful
=
{
toString
:
common
.
mustCall
(()
=>
';'
),
};
spawnSync
(
process
.
execPath
,
[
'-e'
,
stateful
],
{
stdio
:
'ignore'
});