async
把一个测试函数包装进一个异步测试区域(Zone)。当该区域中的所有异步调用都已完成时,该测试将会自动完成。 可用于包装 inject
调用。
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.
说明
例子:
Example:
it('...', async(inject([AClass], (object) => {
object.doSomething.then(() => {
expect(...);
})
});