()
| 137 | |
| 138 | it('coalesces concurrent probes for the same cwd into a single transport spawn', async () => { |
| 139 | let resolveSecond: (value: unknown) => void = () => undefined |
| 140 | sendRequestMock |
| 141 | .mockResolvedValueOnce({ protocolVersion: 1 }) |
| 142 | .mockImplementationOnce(() => new Promise((res) => { resolveSecond = res })) |
no outgoing calls
no test coverage detected