()
| 7 | |
| 8 | let count = 0; |
| 9 | export async function mockRequest() { |
| 10 | await sleep(1000); |
| 11 | if (count >= 1) { |
| 12 | return { list: [4, 5, 6] }; |
| 13 | } |
| 14 | count++; |
| 15 | return { |
| 16 | list: [1, 2, 3], |
| 17 | nextId: count, |
| 18 | }; |
| 19 | } |
| 20 | |
| 21 | const targetEl = document.createElement('div'); |
| 22 |
nothing calls this directly
no test coverage detected
searching dependent graphs…