()
| 4008 | }); |
| 4009 | |
| 4010 | async function completeAnimations() { |
| 4011 | await timeout(0); |
| 4012 | const log = MockAnimationDriver.log as MockAnimationPlayer[]; |
| 4013 | log.forEach((player) => player.finish()); |
| 4014 | await timeout(0); |
| 4015 | } |
| 4016 | |
| 4017 | function arraySwap(arr: any[], indexA: number, indexB: number): void { |
| 4018 | const item = arr[indexA]; |
no test coverage detected