40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
import * as compiler from '@angular/compiler';
|
|
import * as compilerTesting from '@angular/compiler/testing';
|
|
import * as coreTesting from '@angular/core';
|
|
import * as core from '@angular/core/testing';
|
|
import * as httpTesting from '@angular/http';
|
|
import * as http from '@angular/http/testing';
|
|
import * as platformBrowserTesting from '@angular/platform-browser';
|
|
import * as platformBrowserDynamic from '@angular/platform-browser-dynamic';
|
|
import * as platformBrowser from '@angular/platform-browser/testing';
|
|
import * as platformServerTesting from '@angular/platform-server';
|
|
import * as platformServer from '@angular/platform-server/testing';
|
|
import * as routerTesting from '@angular/router';
|
|
import * as router from '@angular/router/testing';
|
|
import * as upgrade from '@angular/upgrade';
|
|
|
|
export default {
|
|
compiler,
|
|
compilerTesting,
|
|
core,
|
|
coreTesting,
|
|
http,
|
|
httpTesting,
|
|
platformBrowser,
|
|
platformBrowserTesting,
|
|
platformBrowserDynamic,
|
|
platformServer,
|
|
platformServerTesting,
|
|
router,
|
|
routerTesting,
|
|
upgrade
|
|
};
|