()
| 159 | const key = queryKey() |
| 160 | const states: Array<number> = [] |
| 161 | const onSuccess = () => |
| 162 | sleep(10).then(() => { |
| 163 | states.push(1) |
| 164 | states.push(2) |
| 165 | }) |
| 166 | const onSettled = () => |
| 167 | sleep(10).then(() => { |
| 168 | states.push(5) |
no test coverage detected
searching dependent graphs…