`zone.js` 0.8.25 introduces `zone-testing` bundle and move all `fakeAsync/async` logic from `@angular/core/testing` to `zone.js` package. But in case some user still using the old version of `zone.js`, an old version of `fakeAsync/async` logic were still kept inside `@angular/core/testing` package as `fallback` logic. Since now `Angular8+` already use `zone.js 0.9+`, so those fallback logic is removed. PR Close #37879
37 lines
1.4 KiB
TypeScript
37 lines
1.4 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
|
|
*/
|
|
|
|
import 'zone.js/lib/node/rollup-main';
|
|
import 'zone.js/lib/zone-spec/long-stack-trace';
|
|
import 'zone.js/lib/zone-spec/task-tracking';
|
|
import 'zone.js/lib/zone-spec/proxy';
|
|
import 'zone.js/lib/zone-spec/sync-test';
|
|
import 'zone.js/lib/testing/async-testing';
|
|
import 'zone.js/lib/testing/fake-async';
|
|
import 'reflect-metadata/Reflect';
|
|
|
|
// Initialize jasmine with @bazel/jasmine boot() function. This will initialize
|
|
// global.jasmine so that it can be patched by zone.js jasmine-patch.js.
|
|
require('@bazel/jasmine').boot();
|
|
import 'zone.js/lib/jasmine/jasmine';
|
|
|
|
(global as any).isNode = true;
|
|
(global as any).isBrowser = false;
|
|
|
|
import '@angular/compiler'; // For JIT mode. Must be in front of any other @angular/* imports.
|
|
// Init TestBed
|
|
import {TestBed} from '@angular/core/testing';
|
|
import {ServerTestingModule, platformServerTesting} from '@angular/platform-server/testing/src/server';
|
|
import {DominoAdapter} from '@angular/platform-server/src/domino_adapter';
|
|
import {createDocument} from 'domino';
|
|
|
|
TestBed.initTestEnvironment(ServerTestingModule, platformServerTesting());
|
|
DominoAdapter.makeCurrent();
|
|
(global as any).document =
|
|
(DominoAdapter as any).defaultDoc || ((DominoAdapter as any).defaultDoc = createDocument());
|