()
| 4000 | }); |
| 4001 | |
| 4002 | function completeAnimations() { |
| 4003 | flushMicrotasks(); |
| 4004 | const log = MockAnimationDriver.log as MockAnimationPlayer[]; |
| 4005 | log.forEach((player) => player.finish()); |
| 4006 | flushMicrotasks(); |
| 4007 | } |
| 4008 | |
| 4009 | function arraySwap(arr: any[], indexA: number, indexB: number): void { |
| 4010 | const item = arr[indexA]; |
no test coverage detected
searching dependent graphs…