(t, stdioOption, isSync)
| 12 | const isWindows = platform === 'win32'; |
| 13 | |
| 14 | const testFd3InheritOutput = async (t, stdioOption, isSync) => { |
| 15 | const {stdio} = await nestedSubprocess('noop-fd.js', ['3', foobarString], {...getStdio(3, stdioOption), isSync}, fullStdio); |
| 16 | t.is(stdio[3], foobarString); |
| 17 | }; |
| 18 | |
| 19 | test('stdio[*] output can use "inherit"', testFd3InheritOutput, 'inherit', false); |
| 20 | test('stdio[*] output can use ["inherit"]', testFd3InheritOutput, ['inherit'], false); |
nothing calls this directly
no test coverage detected
searching dependent graphs…