2016-10-04 23:39:20 -04:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2018-07-06 02:13:25 -04:00
|
|
|
const browserProvidersConf = require('./browser-providers.conf');
|
|
|
|
const {generateSeed} = require('./tools/jasmine-seed-generator');
|
2015-06-02 10:29:09 -04:00
|
|
|
|
2014-09-25 17:04:46 -04:00
|
|
|
// Karma configuration
|
|
|
|
// Generated on Thu Sep 25 2014 11:52:02 GMT-0700 (PDT)
|
|
|
|
module.exports = function(config) {
|
|
|
|
config.set({
|
|
|
|
|
|
|
|
frameworks: ['jasmine'],
|
|
|
|
|
2018-07-06 02:13:25 -04:00
|
|
|
client: {
|
|
|
|
jasmine: {
|
|
|
|
random: true,
|
|
|
|
seed: generateSeed('karma-js.conf'),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2014-09-25 17:04:46 -04:00
|
|
|
files: [
|
2014-10-06 20:35:00 -04:00
|
|
|
// Sources and specs.
|
2015-08-20 11:05:05 -04:00
|
|
|
// Loaded through the System loader, in `test-main.js`.
|
2016-04-28 20:50:03 -04:00
|
|
|
{pattern: 'dist/all/@angular/**/*.js', included: false, watched: true},
|
2014-10-06 20:35:00 -04:00
|
|
|
|
2018-02-15 12:21:18 -05:00
|
|
|
// Serve AngularJS for `ngUpgrade` testing.
|
2018-12-17 12:28:06 -05:00
|
|
|
{pattern: 'node_modules/angular-1.5/angular?(.min).js', included: false, watched: false},
|
2018-02-15 12:21:18 -05:00
|
|
|
{pattern: 'node_modules/angular-mocks-1.5/angular-mocks.js', included: false, watched: false},
|
2018-12-17 12:28:06 -05:00
|
|
|
{pattern: 'node_modules/angular-1.6/angular?(.min).js', included: false, watched: false},
|
2018-07-31 08:10:13 -04:00
|
|
|
{pattern: 'node_modules/angular-mocks-1.6/angular-mocks.js', included: false, watched: false},
|
2018-12-17 12:28:06 -05:00
|
|
|
{pattern: 'node_modules/angular/angular?(.min).js', included: false, watched: false},
|
2018-02-15 12:21:18 -05:00
|
|
|
{pattern: 'node_modules/angular-mocks/angular-mocks.js', included: false, watched: false},
|
2016-12-16 18:14:16 -05:00
|
|
|
|
2018-02-15 12:21:18 -05:00
|
|
|
'node_modules/core-js/client/core.js',
|
2016-12-16 18:14:16 -05:00
|
|
|
'node_modules/zone.js/dist/zone.js',
|
2018-03-31 11:44:38 -04:00
|
|
|
'node_modules/zone.js/dist/zone-testing.js',
|
2017-04-27 14:44:14 -04:00
|
|
|
'node_modules/zone.js/dist/task-tracking.js',
|
2015-08-05 13:32:14 -04:00
|
|
|
|
2014-10-30 13:52:32 -04:00
|
|
|
// Including systemjs because it defines `__eval`, which produces correct stack traces.
|
2017-09-01 13:30:37 -04:00
|
|
|
'test-events.js',
|
2016-12-16 18:14:16 -05:00
|
|
|
'shims_for_IE.js',
|
|
|
|
'node_modules/systemjs/dist/system.src.js',
|
2018-02-28 12:45:11 -05:00
|
|
|
|
|
|
|
// Serve polyfills necessary for testing the `elements` package.
|
|
|
|
{
|
|
|
|
pattern: 'node_modules/@webcomponents/custom-elements/**/*.js',
|
|
|
|
included: false,
|
|
|
|
watched: false
|
|
|
|
},
|
|
|
|
{pattern: 'node_modules/mutation-observer/index.js', included: false, watched: false},
|
|
|
|
|
2015-11-30 20:22:52 -05:00
|
|
|
{pattern: 'node_modules/rxjs/**', included: false, watched: false, served: true},
|
2016-12-16 18:14:16 -05:00
|
|
|
'node_modules/reflect-metadata/Reflect.js',
|
|
|
|
'tools/build/file2modulename.js',
|
|
|
|
'test-main.js',
|
2017-03-15 16:40:24 -04:00
|
|
|
{pattern: 'dist/all/@angular/empty.*', included: false, watched: false},
|
2017-03-07 14:04:30 -05:00
|
|
|
{pattern: 'packages/platform-browser/test/static_assets/**', included: false, watched: false},
|
2016-12-16 18:14:16 -05:00
|
|
|
{
|
2017-03-07 14:04:30 -05:00
|
|
|
pattern: 'packages/platform-browser/test/browser/static_assets/**',
|
2016-10-04 23:39:20 -04:00
|
|
|
included: false,
|
|
|
|
watched: false,
|
2017-07-20 04:54:07 -04:00
|
|
|
},
|
|
|
|
{pattern: 'packages/common/i18n/**', included: false, watched: false, served: true},
|
2014-09-25 17:04:46 -04:00
|
|
|
],
|
|
|
|
|
2016-04-28 20:50:03 -04:00
|
|
|
exclude: [
|
2017-12-16 14:35:47 -05:00
|
|
|
'dist/all/@angular/_testing_init/**',
|
2016-04-28 20:50:03 -04:00
|
|
|
'dist/all/@angular/**/e2e_test/**',
|
2016-12-12 13:49:17 -05:00
|
|
|
'dist/all/@angular/**/*node_only_spec.js',
|
2016-09-09 19:54:26 -04:00
|
|
|
'dist/all/@angular/benchpress/**',
|
2016-06-02 14:33:53 -04:00
|
|
|
'dist/all/@angular/compiler-cli/**',
|
2018-04-06 12:53:10 -04:00
|
|
|
'dist/all/@angular/compiler-cli/src/ngtsc/**',
|
2018-07-12 18:10:55 -04:00
|
|
|
'dist/all/@angular/compiler-cli/test/compliance/**',
|
2018-04-06 12:53:10 -04:00
|
|
|
'dist/all/@angular/compiler-cli/test/ngtsc/**',
|
2016-11-14 20:37:47 -05:00
|
|
|
'dist/all/@angular/compiler/test/aot/**',
|
2017-11-20 13:21:17 -05:00
|
|
|
'dist/all/@angular/compiler/test/render3/**',
|
2018-02-02 18:25:33 -05:00
|
|
|
'dist/all/@angular/core/test/bundling/**',
|
2018-07-13 04:51:54 -04:00
|
|
|
'dist/all/@angular/core/test/render3/ivy/**',
|
2018-04-03 17:52:33 -04:00
|
|
|
'dist/all/@angular/elements/schematics/**',
|
2016-09-09 19:54:26 -04:00
|
|
|
'dist/all/@angular/examples/**/e2e_test/*',
|
2016-11-22 12:10:23 -05:00
|
|
|
'dist/all/@angular/language-service/**',
|
2017-11-07 12:21:48 -05:00
|
|
|
'dist/all/@angular/router/**/test/**',
|
2016-09-07 19:04:33 -04:00
|
|
|
'dist/all/@angular/platform-browser/testing/e2e_util.js',
|
2016-09-09 19:54:26 -04:00
|
|
|
'dist/all/angular1_router.js',
|
2016-10-04 23:39:20 -04:00
|
|
|
'dist/examples/**/e2e_test/**',
|
2016-04-28 20:50:03 -04:00
|
|
|
],
|
2015-01-08 13:02:23 -05:00
|
|
|
|
2015-10-27 11:09:09 -04:00
|
|
|
customLaunchers: browserProvidersConf.customLaunchers,
|
2015-06-02 10:29:09 -04:00
|
|
|
|
2015-11-23 17:58:18 -05:00
|
|
|
plugins: [
|
|
|
|
'karma-jasmine',
|
|
|
|
'karma-browserstack-launcher',
|
|
|
|
'karma-sauce-launcher',
|
|
|
|
'karma-chrome-launcher',
|
|
|
|
'karma-sourcemap-loader',
|
|
|
|
],
|
|
|
|
|
|
|
|
preprocessors: {
|
2016-10-04 23:39:20 -04:00
|
|
|
'**/*.js': ['sourcemap'],
|
2015-11-23 17:58:18 -05:00
|
|
|
},
|
|
|
|
|
2018-05-31 02:49:37 -04:00
|
|
|
// Bazel inter-op: Allow tests to request resources from either
|
|
|
|
// /base/node_modules/path/to/thing
|
|
|
|
// or
|
|
|
|
// /base/angular/node_modules/path/to/thing
|
|
|
|
// This can be removed when all karma tests are run under Bazel, then we
|
|
|
|
// don't need this entire config file.
|
|
|
|
proxies: {
|
|
|
|
'/base/angular/': '/base/',
|
2018-10-04 16:14:14 -04:00
|
|
|
'/base/ngdeps/': '/base/',
|
2018-05-31 02:49:37 -04:00
|
|
|
},
|
|
|
|
|
2018-07-09 10:44:55 -04:00
|
|
|
reporters: ['dots'],
|
2015-06-02 10:29:09 -04:00
|
|
|
sauceLabs: {
|
|
|
|
testName: 'Angular2',
|
2016-04-28 20:50:03 -04:00
|
|
|
retryLimit: 3,
|
2015-06-02 10:29:09 -04:00
|
|
|
startConnect: false,
|
|
|
|
recordVideo: false,
|
|
|
|
recordScreenshots: false,
|
2018-12-12 17:07:21 -05:00
|
|
|
idleTimeout: 600,
|
|
|
|
commandTimeout: 600,
|
|
|
|
maxDuration: 5400,
|
2014-09-29 17:20:23 -04:00
|
|
|
},
|
2015-06-02 10:29:09 -04:00
|
|
|
|
2015-10-27 11:09:09 -04:00
|
|
|
browserStack: {
|
|
|
|
project: 'Angular2',
|
|
|
|
startTunnel: false,
|
2016-04-28 20:50:03 -04:00
|
|
|
retryLimit: 3,
|
2016-11-10 14:58:06 -05:00
|
|
|
timeout: 1800,
|
2016-10-04 23:39:20 -04:00
|
|
|
pollingTimeout: 10000,
|
2015-10-27 11:09:09 -04:00
|
|
|
},
|
|
|
|
|
2015-08-24 20:24:01 -04:00
|
|
|
browsers: ['Chrome'],
|
2014-10-09 16:50:25 -04:00
|
|
|
|
2016-05-02 01:22:26 -04:00
|
|
|
port: 9876,
|
2016-11-10 14:58:06 -05:00
|
|
|
captureTimeout: 180000,
|
|
|
|
browserDisconnectTimeout: 180000,
|
2016-10-04 23:39:20 -04:00
|
|
|
browserDisconnectTolerance: 3,
|
2016-11-10 14:58:06 -05:00
|
|
|
browserNoActivityTimeout: 300000,
|
2014-09-25 17:04:46 -04:00
|
|
|
});
|
2015-06-02 10:29:09 -04:00
|
|
|
|
2019-01-04 14:58:33 -05:00
|
|
|
if (process.env.CIRCLECI) {
|
|
|
|
const tunnelIdentifier = process.env['SAUCE_TUNNEL_IDENTIFIER'];
|
|
|
|
|
|
|
|
// Setup the Saucelabs plugin so that it can launch browsers using the proper tunnel.
|
|
|
|
config.sauceLabs.build = tunnelIdentifier;
|
|
|
|
config.sauceLabs.tunnelIdentifier = tunnelIdentifier;
|
|
|
|
|
|
|
|
// Setup the Browserstack plugin so that it can launch browsers using the proper tunnel.
|
|
|
|
// TODO: This is currently not used because BS doesn't run on the CI. Consider removing.
|
|
|
|
config.browserStack.build = tunnelIdentifier;
|
|
|
|
config.browserStack.tunnelIdentifier = tunnelIdentifier;
|
|
|
|
|
|
|
|
// Try "websocket" for a faster transmission first. Fallback to "polling" if necessary.
|
|
|
|
config.transports = ['websocket', 'polling'];
|
2015-06-02 10:29:09 -04:00
|
|
|
}
|
2014-09-25 17:04:46 -04:00
|
|
|
};
|