build(aio): revert to clean CLI test.ts file (#19702)

The use of `System.import()` in test.ts was causing the webpack build to fail
with a mysterious "Module build failed: Error: TypeScript compilation failed" error,
when running `yarn test`.

PR Close #19702
This commit is contained in:
Peter Bacon Darwin 2017-10-23 22:11:14 +01:00 committed by Matias Niemelä
parent 9d52bf27de
commit f24397c5d0
2 changed files with 7 additions and 28 deletions

View File

@ -1,4 +0,0 @@
// Find all the tests.
const context = (<any>require).context('./', true, /\.spec\.ts$/);
// And load the modules.
context.keys().map(context);

View File

@ -1,6 +1,5 @@
// This file is required by karma.conf.js and loads recursively all the .spec and framework files
// Test dependencies.
import 'zone.js/dist/long-stack-trace-zone';
import 'zone.js/dist/proxy.js';
import 'zone.js/dist/sync-test';
@ -13,25 +12,9 @@ import {
platformBrowserDynamicTesting
} from '@angular/platform-browser-dynamic/testing';
// List vendors here to increase test rebuild performance.
import '@angular/animations';
import '@angular/common';
import '@angular/common/testing';
import '@angular/common/http';
import '@angular/common/http/testing';
import '@angular/core/';
import '@angular/core/testing';
import '@angular/material';
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
// Unfortunately there's no typing for the `__karma__` variable. Just declare it as any.
declare var __karma__: any;
declare const __karma__: any;
declare const require: any;
// Prevent Karma from running prematurely.
__karma__.loaded = function () {};
@ -41,9 +24,9 @@ getTestBed().initTestEnvironment(
BrowserDynamicTestingModule,
platformBrowserDynamicTesting()
);
declare var System: any;
// Then we find all the tests.
System.import('./test-specs.ts')
// Finally, start Karma to run the tests.
.then(() => __karma__.start());
const context = require.context('./', true, /\.spec\.ts$/);
// And load the modules.
context.keys().map(context);
// Finally, start Karma to run the tests.
__karma__.start();