mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
10 lines
No EOL
440 B
TypeScript
10 lines
No EOL
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());
|
|
|