| 15 | const ECHO_FIXTURE_URL = new URL('echo.js', FIXTURES_DIRECTORY_URL); |
| 16 | |
| 17 | const parseAndRunCommand = command => execa`${parseCommandString(command)}`; |
| 18 | |
| 19 | test('parseCommandString() + execa()', async t => { |
| 20 | const {stdout} = await execa('echo.js', parseCommandString('foo bar')); |
nothing calls this directly
no test coverage detected