(
millis: number = 0,
tickOptions: {processNewMacroTasksSynchronously: boolean} = {
processNewMacroTasksSynchronously: true,
},
)
| 138 | * @publicApi |
| 139 | */ |
| 140 | export function tick( |
| 141 | millis: number = 0, |
| 142 | tickOptions: {processNewMacroTasksSynchronously: boolean} = { |
| 143 | processNewMacroTasksSynchronously: true, |
| 144 | }, |
| 145 | ): void { |
| 146 | return withFakeAsyncTestModule((m) => m.tick(millis, tickOptions)); |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * IMPORTANT: This API requires Zone.js and cannot be used with the Vitest test runner |
no test coverage detected
searching dependent graphs…