(t, fdNumber, stdioOption, isSync)
| 23 | |
| 24 | if (isLinux) { |
| 25 | const testOverflowStream = async (t, fdNumber, stdioOption, isSync) => { |
| 26 | const {stdout} = await nestedSubprocess('empty.js', {...getStdio(fdNumber, stdioOption), isSync}, fullStdio); |
| 27 | t.is(stdout, ''); |
| 28 | }; |
| 29 | |
| 30 | test('stdin can use 4+', testOverflowStream, 0, 4, false); |
| 31 | test('stdin can use [4+]', testOverflowStream, 0, [4], false); |
nothing calls this directly
no test coverage detected
searching dependent graphs…