()
| 202 | * ``` |
| 203 | */ |
| 204 | export function useAutoTick() { |
| 205 | beforeEach(() => { |
| 206 | jasmine.clock().install(); |
| 207 | jasmine.clock().autoTick(); |
| 208 | }); |
| 209 | afterEach(() => { |
| 210 | jasmine.clock().uninstall(); |
| 211 | }); |
| 212 | } |
| 213 | |
| 214 | export interface WaitForOptions { |
| 215 | timeout?: number; |
no test coverage detected
searching dependent graphs…