(t, pid)
| 8 | import getPort from 'get-port'; |
| 9 | |
| 10 | const noopProcessKilled = async (t, pid) => { |
| 11 | // Ensure the noop process has time to exit |
| 12 | await delay(100); |
| 13 | t.false(await processExists(pid)); |
| 14 | }; |
| 15 | |
| 16 | test('main', async t => { |
| 17 | const {stdout} = await execa('./cli.js', ['--version']); |