@angular/core/testing

fakeAsync

function

Wraps a function to be executed in the fakeAsync zone:

  • Microtasks are manually executed by calling flushMicrotasks().
  • Timers are synchronous; tick() simulates the asynchronous passage of time.

fakeAsync(
fn: Function
): (...args: any[]) => any;
Jump to details