2016-10-05 03:39:20 +00: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
|
|
|
|
|
*/
|
|
|
|
|
|
2015-10-27 15:09:09 +00:00
|
|
|
var browserProvidersConf = require('./browser-providers.conf.js');
|
2015-11-23 22:58:18 +00:00
|
|
|
var internalAngularReporter = require('./tools/karma/reporter.js');
|
2015-06-02 14:29:09 +00:00
|
|
|
|
2014-09-25 21:04:46 +00:00
|
|
|
// Karma configuration
|
|
|
|
|
// Generated on Thu Sep 25 2014 11:52:02 GMT-0700 (PDT)
|
|
|
|
|
module.exports = function(config) {
|
|
|
|
|
config.set({
|
|
|
|
|
|
|
|
|
|
frameworks: ['jasmine'],
|
|
|
|
|
|
|
|
|
|
files: [
|
2014-10-07 00:35:00 +00:00
|
|
|
// Sources and specs.
|
2015-08-20 15:05:05 +00:00
|
|
|
// Loaded through the System loader, in `test-main.js`.
|
2016-04-29 00:50:03 +00:00
|
|
|
{pattern: 'dist/all/@angular/**/*.js', included: false, watched: true},
|
2014-10-07 00:35:00 +00:00
|
|
|
|
2016-08-26 00:28:36 +00:00
|
|
|
'node_modules/core-js/client/core.js',
|
2015-08-05 17:32:14 +00:00
|
|
|
// include Angular v1 for upgrade module testing
|
2016-10-19 20:41:04 +00:00
|
|
|
'node_modules/angular/angular.js',
|
2016-12-16 23:14:16 +00:00
|
|
|
'node_modules/angular-mocks/angular-mocks.js',
|
|
|
|
|
|
|
|
|
|
'node_modules/zone.js/dist/zone.js',
|
|
|
|
|
'node_modules/zone.js/dist/long-stack-trace-zone.js',
|
|
|
|
|
'node_modules/zone.js/dist/proxy.js',
|
|
|
|
|
'node_modules/zone.js/dist/sync-test.js',
|
|
|
|
|
'node_modules/zone.js/dist/jasmine-patch.js',
|
|
|
|
|
'node_modules/zone.js/dist/async-test.js',
|
2016-04-18 23:04:35 +00:00
|
|
|
'node_modules/zone.js/dist/fake-async-test.js',
|
2015-08-05 17:32:14 +00:00
|
|
|
|
2014-10-30 17:52:32 +00:00
|
|
|
// Including systemjs because it defines `__eval`, which produces correct stack traces.
|
2016-12-16 23:14:16 +00:00
|
|
|
'shims_for_IE.js',
|
|
|
|
|
'node_modules/systemjs/dist/system.src.js',
|
2015-12-01 01:22:52 +00:00
|
|
|
{pattern: 'node_modules/rxjs/**', included: false, watched: false, served: true},
|
2016-12-16 23:14:16 +00:00
|
|
|
'node_modules/reflect-metadata/Reflect.js',
|
|
|
|
|
'tools/build/file2modulename.js',
|
|
|
|
|
'test-main.js',
|
2017-03-15 20:40:24 +00:00
|
|
|
{pattern: 'dist/all/@angular/empty.*', included: false, watched: false},
|
2017-03-07 19:04:30 +00:00
|
|
|
{pattern: 'packages/platform-browser/test/static_assets/**', included: false, watched: false},
|
2016-12-16 23:14:16 +00:00
|
|
|
{
|
2017-03-07 19:04:30 +00:00
|
|
|
pattern: 'packages/platform-browser/test/browser/static_assets/**',
|
2016-10-05 03:39:20 +00:00
|
|
|
included: false,
|
|
|
|
|
watched: false,
|
|
|
|
|
}
|
2014-09-25 21:04:46 +00:00
|
|
|
],
|
|
|
|
|
|
2016-04-29 00:50:03 +00:00
|
|
|
exclude: [
|
|
|
|
|
'dist/all/@angular/**/e2e_test/**',
|
2016-12-12 18:49:17 +00:00
|
|
|
'dist/all/@angular/**/*node_only_spec.js',
|
2016-09-09 23:54:26 +00:00
|
|
|
'dist/all/@angular/benchpress/**',
|
2016-06-02 18:33:53 +00:00
|
|
|
'dist/all/@angular/compiler-cli/**',
|
2016-11-15 01:37:47 +00:00
|
|
|
'dist/all/@angular/compiler/test/aot/**',
|
2016-09-09 23:54:26 +00:00
|
|
|
'dist/all/@angular/examples/**/e2e_test/*',
|
2016-11-22 17:10:23 +00:00
|
|
|
'dist/all/@angular/language-service/**',
|
2016-09-09 23:54:26 +00:00
|
|
|
'dist/all/@angular/router/**',
|
2016-09-07 23:04:33 +00:00
|
|
|
'dist/all/@angular/platform-browser/testing/e2e_util.js',
|
2016-09-09 23:54:26 +00:00
|
|
|
'dist/all/angular1_router.js',
|
2016-10-05 03:39:20 +00:00
|
|
|
'dist/examples/**/e2e_test/**',
|
2016-04-29 00:50:03 +00:00
|
|
|
],
|
2015-01-08 18:02:23 +00:00
|
|
|
|
2015-10-27 15:09:09 +00:00
|
|
|
customLaunchers: browserProvidersConf.customLaunchers,
|
2015-06-02 14:29:09 +00:00
|
|
|
|
2015-11-23 22:58:18 +00:00
|
|
|
plugins: [
|
|
|
|
|
'karma-jasmine',
|
|
|
|
|
'karma-browserstack-launcher',
|
|
|
|
|
'karma-sauce-launcher',
|
|
|
|
|
'karma-chrome-launcher',
|
|
|
|
|
'karma-sourcemap-loader',
|
2016-10-05 03:39:20 +00:00
|
|
|
internalAngularReporter,
|
2015-11-23 22:58:18 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
preprocessors: {
|
2016-10-05 03:39:20 +00:00
|
|
|
'**/*.js': ['sourcemap'],
|
2015-11-23 22:58:18 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
reporters: ['internal-angular'],
|
2015-06-02 14:29:09 +00:00
|
|
|
sauceLabs: {
|
|
|
|
|
testName: 'Angular2',
|
2016-04-29 00:50:03 +00:00
|
|
|
retryLimit: 3,
|
2015-06-02 14:29:09 +00:00
|
|
|
startConnect: false,
|
|
|
|
|
recordVideo: false,
|
|
|
|
|
recordScreenshots: false,
|
2015-09-03 03:58:02 +00:00
|
|
|
options: {
|
2016-05-09 23:47:26 +00:00
|
|
|
'selenium-version': '2.53.0',
|
2015-09-03 03:58:02 +00:00
|
|
|
'command-timeout': 600,
|
|
|
|
|
'idle-timeout': 600,
|
2016-10-05 03:39:20 +00:00
|
|
|
'max-duration': 5400,
|
2015-06-02 14:29:09 +00:00
|
|
|
}
|
2014-09-29 21:20:23 +00:00
|
|
|
},
|
2015-06-02 14:29:09 +00:00
|
|
|
|
2015-10-27 15:09:09 +00:00
|
|
|
browserStack: {
|
|
|
|
|
project: 'Angular2',
|
|
|
|
|
startTunnel: false,
|
2016-04-29 00:50:03 +00:00
|
|
|
retryLimit: 3,
|
2016-11-10 19:58:06 +00:00
|
|
|
timeout: 1800,
|
2016-10-05 03:39:20 +00:00
|
|
|
pollingTimeout: 10000,
|
2015-10-27 15:09:09 +00:00
|
|
|
},
|
|
|
|
|
|
2015-08-25 00:24:01 +00:00
|
|
|
browsers: ['Chrome'],
|
2014-10-09 20:50:25 +00:00
|
|
|
|
2016-05-02 05:22:26 +00:00
|
|
|
port: 9876,
|
2016-11-10 19:58:06 +00:00
|
|
|
captureTimeout: 180000,
|
|
|
|
|
browserDisconnectTimeout: 180000,
|
2016-10-05 03:39:20 +00:00
|
|
|
browserDisconnectTolerance: 3,
|
2016-11-10 19:58:06 +00:00
|
|
|
browserNoActivityTimeout: 300000,
|
2014-09-25 21:04:46 +00:00
|
|
|
});
|
2015-06-02 14:29:09 +00:00
|
|
|
|
2015-10-27 15:09:09 +00:00
|
|
|
if (process.env.TRAVIS) {
|
2016-10-05 03:39:20 +00:00
|
|
|
var buildId =
|
|
|
|
|
'TRAVIS #' + process.env.TRAVIS_BUILD_NUMBER + ' (' + process.env.TRAVIS_BUILD_ID + ')';
|
2016-04-29 00:50:03 +00:00
|
|
|
if (process.env.CI_MODE.startsWith('saucelabs')) {
|
2015-10-27 15:09:09 +00:00
|
|
|
config.sauceLabs.build = buildId;
|
|
|
|
|
config.sauceLabs.tunnelIdentifier = process.env.TRAVIS_JOB_NUMBER;
|
|
|
|
|
|
|
|
|
|
// TODO(mlaval): remove once SauceLabs supports websockets.
|
|
|
|
|
// This speeds up the capturing a bit, as browsers don't even try to use websocket.
|
|
|
|
|
console.log('>>>> setting socket.io transport to polling <<<<');
|
|
|
|
|
config.transports = ['polling'];
|
|
|
|
|
}
|
2015-06-02 14:29:09 +00:00
|
|
|
|
2016-04-29 00:50:03 +00:00
|
|
|
if (process.env.CI_MODE.startsWith('browserstack')) {
|
2015-10-27 15:09:09 +00:00
|
|
|
config.browserStack.build = buildId;
|
|
|
|
|
config.browserStack.tunnelIdentifier = process.env.TRAVIS_JOB_NUMBER;
|
|
|
|
|
}
|
2015-06-02 14:29:09 +00:00
|
|
|
}
|
2014-09-25 21:04:46 +00:00
|
|
|
};
|