(t, isSync, options)
| 9 | setFixtureDirectory(); |
| 10 | |
| 11 | const testNoOutputOptions = async (t, isSync, options) => { |
| 12 | const {stderr} = await nestedSubprocess('noop.js', [foobarString], {verbose: 'full', isSync, ...options}); |
| 13 | t.is(getOutputLine(stderr), undefined); |
| 14 | }; |
| 15 | |
| 16 | test('Does not print stdout, encoding "buffer"', testNoOutputOptions, false, {encoding: 'buffer'}); |
| 17 | test('Does not print stdout, encoding "hex"', testNoOutputOptions, false, {encoding: 'hex'}); |
nothing calls this directly
no test coverage detected
searching dependent graphs…