()
| 51 | }) |
| 52 | |
| 53 | const triggerAllTimeouts = () => { |
| 54 | const callbacks = Array.from(timeoutCallbacks.entries()) |
| 55 | callbacks.forEach(([id, callback]) => { |
| 56 | callback() |
| 57 | timeoutCallbacks.delete(id) |
| 58 | }) |
| 59 | } |
| 60 | |
| 61 | describe(`Collection Status Tracking`, () => { |
| 62 | it(`should start with idle status and transition to ready after first commit when startSync is false`, () => { |
no test coverage detected
searching dependent graphs…