2021-05-27 20:17:22 +00:00
|
|
|
import 'zone.js/testing';
|
2017-09-25 11:07:52 +00:00
|
|
|
import { getTestBed } from '@angular/core/testing';
|
2019-01-15 10:15:54 +00:00
|
|
|
import { BrowserDynamicTestingModule, platformBrowserDynamicTesting } from '@angular/platform-browser-dynamic/testing';
|
2017-09-25 11:07:52 +00:00
|
|
|
|
|
|
|
declare const require: any;
|
|
|
|
|
|
|
|
// First, initialize the Angular testing environment.
|
2021-11-07 16:28:04 +00:00
|
|
|
getTestBed().initTestEnvironment(BrowserDynamicTestingModule, platformBrowserDynamicTesting(), {
|
|
|
|
teardown: { destroyAfterEach: false }
|
|
|
|
});
|
2017-09-25 11:07:52 +00:00
|
|
|
// Then we find all the tests.
|
|
|
|
const context = require.context('./', true, /\.spec\.ts$/);
|
|
|
|
// And load the modules.
|
|
|
|
context.keys().map(context);
|