mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
10 lines
440 B
TypeScript
10 lines
440 B
TypeScript
/**
|
|
* @fileoverview Provides a script to initialize TestBed before tests are run.
|
|
* This file should be included in the "runtime_deps" of a "karma_web_test_suite"
|
|
* rule.
|
|
*/
|
|
import {TestBed} from '@angular/core/testing';
|
|
import {BrowserDynamicTestingModule, platformBrowserDynamicTesting} from '@angular/platform-browser-dynamic/testing';
|
|
|
|
TestBed.initTestEnvironment(BrowserDynamicTestingModule, platformBrowserDynamicTesting());
|
|
|