2017-01-27 03:20:51 -05:00
|
|
|
// This file is required by karma.conf.js and loads recursively all the .spec and framework files
|
|
|
|
|
2017-04-21 15:20:02 -04:00
|
|
|
// Test dependencies.
|
2017-01-27 03:20:51 -05:00
|
|
|
import 'zone.js/dist/long-stack-trace-zone';
|
|
|
|
import 'zone.js/dist/proxy.js';
|
|
|
|
import 'zone.js/dist/sync-test';
|
|
|
|
import 'zone.js/dist/jasmine-patch';
|
|
|
|
import 'zone.js/dist/async-test';
|
|
|
|
import 'zone.js/dist/fake-async-test';
|
|
|
|
import { getTestBed } from '@angular/core/testing';
|
|
|
|
import {
|
|
|
|
BrowserDynamicTestingModule,
|
|
|
|
platformBrowserDynamicTesting
|
|
|
|
} from '@angular/platform-browser-dynamic/testing';
|
|
|
|
|
2017-04-21 15:20:02 -04:00
|
|
|
// List vendors here to increase test rebuild performance.
|
2017-08-11 13:16:55 -04:00
|
|
|
import '@angular/animations';
|
2017-04-21 15:20:02 -04:00
|
|
|
import '@angular/common';
|
|
|
|
import '@angular/common/testing';
|
2017-08-11 13:16:55 -04:00
|
|
|
import '@angular/common/http';
|
|
|
|
import '@angular/common/http/testing';
|
2017-04-21 15:20:02 -04:00
|
|
|
import '@angular/core/';
|
|
|
|
import '@angular/core/testing';
|
2017-08-11 13:16:55 -04:00
|
|
|
import '@angular/material';
|
2017-04-21 15:20:02 -04:00
|
|
|
import '@angular/platform-browser';
|
|
|
|
import '@angular/platform-browser/testing';
|
|
|
|
import '@angular/platform-browser/animations';
|
|
|
|
import '@angular/platform-browser-dynamic';
|
|
|
|
import '@angular/platform-browser-dynamic/testing';
|
|
|
|
import '@angular/service-worker';
|
|
|
|
import 'rxjs'; // tslint:disable-line
|
|
|
|
|
2017-01-27 03:20:51 -05:00
|
|
|
// Unfortunately there's no typing for the `__karma__` variable. Just declare it as any.
|
|
|
|
declare var __karma__: any;
|
|
|
|
|
|
|
|
// Prevent Karma from running prematurely.
|
|
|
|
__karma__.loaded = function () {};
|
|
|
|
|
|
|
|
// First, initialize the Angular testing environment.
|
|
|
|
getTestBed().initTestEnvironment(
|
|
|
|
BrowserDynamicTestingModule,
|
|
|
|
platformBrowserDynamicTesting()
|
|
|
|
);
|
2017-04-21 15:20:02 -04:00
|
|
|
|
|
|
|
declare var System: any;
|
2017-01-27 03:20:51 -05:00
|
|
|
// Then we find all the tests.
|
2017-04-21 15:20:02 -04:00
|
|
|
System.import('./test-specs.ts')
|
|
|
|
// Finally, start Karma to run the tests.
|
|
|
|
.then(() => __karma__.start());
|