(ipcEmitter, isSubprocess, {signal})
| 59 | }; |
| 60 | |
| 61 | const throwOnDisconnect = async (ipcEmitter, isSubprocess, {signal}) => { |
| 62 | await once(ipcEmitter, 'disconnect', {signal}); |
| 63 | throwOnEarlyDisconnect(isSubprocess); |
| 64 | }; |
| 65 | |
| 66 | const throwOnStrictError = async (ipcEmitter, isSubprocess, {signal}) => { |
| 67 | const [error] = await once(ipcEmitter, 'strict:error', {signal}); |
no test coverage detected
searching dependent graphs…