Help Angular by taking a 1 minute survey!Go to surveyHome

async

Wraps a test function in an asynchronous test zone. The test will automatically complete when all asynchronous calls within this zone are done. Can be used to wrap an inject call.

See more...

async(fn: Function): (done: any) => any
      
      async(fn: Function): (done: any) => any
    
Parameters
fn Function
Returns

(done: any) => any

Description

Example:

it('...', async(inject([AClass], (object) => { object.doSomething.then(() => { expect(...); }) });
      
      it('...', async(inject([AClass], (object) => {
  object.doSomething.then(() => {
    expect(...);
  })
});