mempool/frontend/src/test.ts

23 lines
679 B
TypeScript
Raw Normal View History

2019-07-21 16:59:47 +02:00
// This file is required by karma.conf.js and loads recursively all the .spec and framework files
import 'zone.js/testing';
2019-07-21 16:59:47 +02:00
import { getTestBed } from '@angular/core/testing';
import {
BrowserDynamicTestingModule,
platformBrowserDynamicTesting
} from '@angular/platform-browser-dynamic/testing';
declare const require: any;
// First, initialize the Angular testing environment.
getTestBed().initTestEnvironment(
BrowserDynamicTestingModule,
2021-12-08 17:24:33 +01:00
platformBrowserDynamicTesting(), {
teardown: { destroyAfterEach: false }
}
2019-07-21 16:59:47 +02:00
);
// Then we find all the tests.
const context = require.context('./', true, /\.spec\.ts$/);
// And load the modules.
context.keys().map(context);