Flush pending microtasks (awaited promises) inside an act() boundary.
()
| 60 | |
| 61 | /** Flush pending microtasks (awaited promises) inside an act() boundary. */ |
| 62 | async function flush() { |
| 63 | await act(async () => { |
| 64 | await Promise.resolve() |
| 65 | await Promise.resolve() |
| 66 | }) |
| 67 | } |
| 68 | |
| 69 | describe('useAutosave', () => { |
| 70 | beforeEach(() => { |
no test coverage detected