This is needed for the case if a `beforeEach` instantiates `NgZone`and the `it` uses `TestComponentBuilder.createFakeAsync`. Otherwise the `NgZone` will use the root zone as parent, and `TestComponentBuilder.createFakeAsync` will always return undefined as `tick` does not forward promises created under the zone of `NgZone`.
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * @license
 | 
						|
 * Copyright Google Inc. 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
 | 
						|
 */
 | 
						|
 | 
						|
/**
 | 
						|
 * Public Test Library for unit testing Angular2 Applications. Assumes that you are running
 | 
						|
 * with Jasmine, Mocha, or a similar framework which exports a beforeEach function and
 | 
						|
 * allows tests to be asynchronous by either returning a promise or using a 'done' parameter.
 | 
						|
 */
 | 
						|
 | 
						|
import {SchemaMetadata} from '../index';
 | 
						|
 | 
						|
import {resetFakeAsyncZone} from './fake_async';
 | 
						|
import {TestBed, TestModuleMetadata, getTestBed} from './test_bed';
 | 
						|
 | 
						|
declare var global: any;
 | 
						|
 | 
						|
var _global = <any>(typeof window === 'undefined' ? global : window);
 | 
						|
 | 
						|
// Reset the test providers and the fake async zone before each test.
 | 
						|
if (_global.beforeEach) {
 | 
						|
  _global.beforeEach(() => {
 | 
						|
    TestBed.resetTestingModule();
 | 
						|
    resetFakeAsyncZone();
 | 
						|
  });
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * Allows overriding default providers of the test injector,
 | 
						|
 * which are defined in test_injector.js
 | 
						|
 *
 | 
						|
 * @deprecated Use `TestBed.configureTestingModule instead.
 | 
						|
 */
 | 
						|
export function addProviders(providers: Array<any>): void {
 | 
						|
  if (!providers) return;
 | 
						|
  TestBed.configureTestingModule({providers: providers});
 | 
						|
}
 |