tick()

Experimental Function

Class Export

export tick(millis?: number) : void

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

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

Example

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

exported from @angular/core/testing/index defined in @angular/core/testing/fake_async.ts

doc_Angular
2016-10-06 09:47:07
Comments
Leave a Comment

Please login to continue.