(t, opts)
| 680 | |
| 681 | t.test('do no fancy handling for shellouts', async t => { |
| 682 | const mockShelloutExit = (t, opts) => mockExitHandler(t, { |
| 683 | command: 'exec', |
| 684 | argv: ['-c', 'exit'], |
| 685 | config: { |
| 686 | timing: false, |
| 687 | progress: false, |
| 688 | ...opts.config, |
| 689 | }, |
| 690 | ...opts, |
| 691 | }) |
| 692 | |
| 693 | t.test('shellout with a numeric error code', async t => { |
| 694 | const { exitHandler, logs, errors } = await mockShelloutExit(t, { |
no test coverage detected
searching dependent graphs…