(...args)
| 151 | } |
| 152 | |
| 153 | function spawnSyncAndAssert(...args) { |
| 154 | const expectations = args.pop(); |
| 155 | return expectSyncExit(spawnSyncAndAssert, [...args], { |
| 156 | status: 0, |
| 157 | signal: null, |
| 158 | ...expectations, |
| 159 | }); |
| 160 | } |
| 161 | |
| 162 | module.exports = { |
| 163 | cleanupStaleProcess, |
searching dependent graphs…