(fn: Function, options?: {flush?: boolean})
| 68 | * @publicApi |
| 69 | */ |
| 70 | export function fakeAsync(fn: Function, options?: {flush?: boolean}): (...args: any[]) => any { |
| 71 | return withFakeAsyncTestModule((v) => v.fakeAsync(fn, options)); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * IMPORTANT: This API requires Zone.js and cannot be used with the Vitest test runner |
no test coverage detected
searching dependent graphs…