18 lines
525 B
TypeScript
Raw Normal View History

2020-10-02 17:20:00 +02:00
// This file is required by karma.conf.js and loads recursively all the .spec and framework files
2021-10-05 06:39:38 +02:00
import 'zone.js';
import 'zone.js/testing';
2020-10-02 17:20:00 +02:00
import { getTestBed } from '@angular/core/testing';
import {
BrowserDynamicTestingModule,
platformBrowserDynamicTesting
} from '@angular/platform-browser-dynamic/testing';
// First, initialize the Angular testing environment.
getTestBed().initTestEnvironment(
BrowserDynamicTestingModule,
2022-08-19 20:39:00 +02:00
platformBrowserDynamicTesting(), {
teardown: { destroyAfterEach: false }
}
2020-10-02 17:20:00 +02:00
);