(fetchMock: Mock, index: number)
| 74 | } |
| 75 | |
| 76 | function getFetchCall(fetchMock: Mock, index: number) { |
| 77 | const call = fetchMock.mock.calls[index]; |
| 78 | if (!call) { |
| 79 | throw new Error(`expected fetch call at index ${index}`); |
| 80 | } |
| 81 | return call; |
| 82 | } |
| 83 | |
| 84 | describe("thread store", () => { |
| 85 | const stores: Array<ReturnType<typeof ɵcreateThreadStore>> = []; |
no outgoing calls
no test coverage detected
searching dependent graphs…