da41a954b5
Angular 1.x -> AngularJS Angular 1 -> AngularJS Angular1 -> AngularJS Angular 2+ -> Angular Angular 2.0 -> Angular Angular2 -> Angular I have deliberately not touched any of the symbol names as that would cause big merge collisions with Tobias's work. All the renames are in .md, .json, and inline comments and jsdocs. PR Close #14132
39 lines
907 B
JavaScript
39 lines
907 B
JavaScript
/**
|
|
* @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
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var browserProvidersConf = require('../../browser-providers.conf.js');
|
|
|
|
// This runs the tests for the router in AngularJS
|
|
|
|
module.exports = function (config) {
|
|
var options = {
|
|
frameworks: ['jasmine'],
|
|
|
|
files: [
|
|
'../../node_modules/core-js/client/core.js',
|
|
'../../node_modules/angular/angular.js',
|
|
'../../node_modules/angular-animate/angular-animate.js',
|
|
'../../node_modules/angular-mocks/angular-mocks.js',
|
|
|
|
'../../dist/angular_1_router.js',
|
|
'src/ng_route_shim.js',
|
|
|
|
'test/*.es5.js',
|
|
'test/**/*_spec.js'
|
|
],
|
|
|
|
customLaunchers: browserProvidersConf.customLaunchers,
|
|
|
|
browsers: ['Chrome']
|
|
};
|
|
|
|
config.set(options);
|
|
};
|