(t, parentFixture)
| 37 | test('Does not print stdout, stdout WritableStream, sync', testNoOutputDynamic, true, 'writable-web.js'); |
| 38 | |
| 39 | const testNoOutputStream = async (t, parentFixture) => { |
| 40 | const {stderr} = await nestedSubprocess('noop.js', [foobarString], {verbose: 'full', parentFixture}); |
| 41 | t.is(getOutputLine(stderr), undefined); |
| 42 | }; |
| 43 | |
| 44 | test('Does not print stdout, .pipe(stream)', testNoOutputStream, 'nested-pipe-stream.js'); |
| 45 | test('Does not print stdout, .pipe(subprocess)', testNoOutputStream, 'nested-pipe-subprocess.js'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…