(...args)
| 144 | } |
| 145 | |
| 146 | function spawnSyncAndExitWithoutError(...args) { |
| 147 | return expectSyncExit(spawnSyncAndExitWithoutError, [...args], { |
| 148 | status: 0, |
| 149 | signal: null, |
| 150 | }); |
| 151 | } |
| 152 | |
| 153 | function spawnSyncAndAssert(...args) { |
| 154 | const expectations = args.pop(); |
searching dependent graphs…