This is the archived documentation for Angular v6. Please visit angular.io to see documentation for the current version of Angular.

tick

Simulates the asynchronous passage of time for the timers in the fakeAsync zone.

See more...

tick(millis: number = 0): void
      
      tick(millis: number = 0): void
    

Parameters

millis

Type: number.

Optional. Default is 0.

Returns

void

Description

The microtasks queue is drained at the very start of this function and after any timer callback has been executed.

Usage notes

Example

describe('this test', () => { it('looks async but is synchronous', <any>fakeAsync((): void => { let flag = false; setTimeout(() => { flag = true; }, 100); expect(flag).toBe(false); tick(50); expect(flag).toBe(false); tick(50); expect(flag).toBe(true); })); });
      
      describe('this test', () => {
  it('looks async but is synchronous', <any>fakeAsync((): void => {
       let flag = false;
       setTimeout(() => { flag = true; }, 100);
       expect(flag).toBe(false);
       tick(50);
       expect(flag).toBe(false);
       tick(50);
       expect(flag).toBe(true);
     }));
});