Skip to content
Snippets Groups Projects
test.ts 806 B
Newer Older
  • Learn to ignore specific revisions
  • Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    // This file is required by karma.conf.js and loads recursively all the .spec and framework files
    
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    import 'zone.js/testing';
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    import { getTestBed } from '@angular/core/testing';
    
    import { BrowserDynamicTestingModule, platformBrowserDynamicTesting } from '@angular/platform-browser-dynamic/testing';
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    
    declare const require: {
    
      context(
        path: string,
        deep?: boolean,
        filter?: RegExp
      ): {
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
        keys(): string[];
        <T>(id: string): T;
      };
    };
    
    // First, initialize the Angular testing environment.
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    getTestBed().initTestEnvironment(BrowserDynamicTestingModule, platformBrowserDynamicTesting(), {
        teardown: { destroyAfterEach: false }
    });
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    // Then we find all the tests.
    const context = require.context('./', true, /\.spec\.ts$/);
    // And load the modules.
    
    context.keys().map(context); //NOSONAR