Drain the microtask queue so all async chunks in executeAction finish.
()
| 76 | |
| 77 | /** Drain the microtask queue so all async chunks in executeAction finish. */ |
| 78 | async function flush() { |
| 79 | await new Promise((r) => setTimeout(r, 0)) |
| 80 | } |
| 81 | |
| 82 | beforeEach(() => { |
| 83 | vi.clearAllMocks() |
no outgoing calls
no test coverage detected