Нет описания

12345678910111213141516171819202122232425262728
  1. // This file is required by karma.conf.js and loads recursively all the .spec and framework files
  2. import 'zone.js';
  3. import 'zone.js/testing';
  4. import { getTestBed } from '@angular/core/testing';
  5. import {
  6. BrowserDynamicTestingModule,
  7. platformBrowserDynamicTesting
  8. } from '@angular/platform-browser-dynamic/testing';
  9. declare const require: {
  10. context(path: string, deep?: boolean, filter?: RegExp): {
  11. keys(): string[];
  12. <T>(id: string): T;
  13. };
  14. };
  15. // First, initialize the Angular testing environment.
  16. getTestBed().initTestEnvironment(
  17. BrowserDynamicTestingModule,
  18. platformBrowserDynamicTesting(), {
  19. teardown: { destroyAfterEach: false }
  20. }
  21. );
  22. // Then we find all the tests.
  23. const context = require.context('./', true, /\.spec\.ts$/);
  24. // And load the modules.
  25. context.keys().map(context);

Powered by TurnKey Linux.