With this change we drop support for zone.js 0.10.x. This is needed because in version 12 the CLI will only work with `~0.11.4`. See angular/angular-cli#20034. BREAKING CHANGE: Minimum supported `zone.js` version is `0.11.4` PR Close #40823
53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
/**
|
|
* 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 {@link inject} call.
|
|
*
|
|
* Example:
|
|
*
|
|
* ```
|
|
* it('...', waitForAsync(inject([AClass], (object) => {
|
|
* object.doSomething.then(() => {
|
|
* expect(...);
|
|
* })
|
|
* });
|
|
* ```
|
|
*
|
|
* @publicApi
|
|
*/
|
|
export function waitForAsync(fn: Function): (done: any) => any {
|
|
const _Zone: any = typeof Zone !== 'undefined' ? Zone : null;
|
|
if (!_Zone) {
|
|
return function() {
|
|
return Promise.reject(
|
|
'Zone is needed for the waitForAsync() test helper but could not be found. ' +
|
|
'Please make sure that your environment includes zone.js');
|
|
};
|
|
}
|
|
const asyncTest = _Zone && _Zone[_Zone.__symbol__('asyncTest')];
|
|
if (typeof asyncTest === 'function') {
|
|
return asyncTest(fn);
|
|
}
|
|
return function() {
|
|
return Promise.reject(
|
|
'zone-testing.js is needed for the async() test helper but could not be found. ' +
|
|
'Please make sure that your environment includes zone.js/testing');
|
|
};
|
|
}
|
|
|
|
/**
|
|
* @deprecated use `waitForAsync()`, (expected removal in v12)
|
|
* @see {@link waitForAsync}
|
|
* @publicApi
|
|
* */
|
|
export function async(fn: Function): (done: any) => any {
|
|
return waitForAsync(fn);
|
|
}
|