(callback: Function)
| 18 | let store: Store; |
| 19 | |
| 20 | const act = (callback: Function) => { |
| 21 | callback(); |
| 22 | |
| 23 | jest.runAllTimers(); // Flush Bridge operations |
| 24 | }; |
| 25 | |
| 26 | const flushPendingUpdates = () => { |
| 27 | jest.runOnlyPendingTimers(); |
no test coverage detected