| 16 | `, |
| 17 | }) |
| 18 | export class App { |
| 19 | query = injectQuery(() => ({ |
| 20 | queryKey: ['test'], |
| 21 | queryFn: async () => { |
| 22 | await new Promise((r) => setTimeout(r, 1000)) |
| 23 | return 'Success' |
| 24 | }, |
| 25 | })) |
| 26 | } |
nothing calls this directly
no test coverage detected