mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 15:40:22 +00:00
This should not affect the Jenkins build at all. Now, the Travis build uses Chrome on Sauce Labs, which in theory gives us opportunity to use any browser/platform that Sauce Labs offers.
27 lines
610 B
JavaScript
27 lines
610 B
JavaScript
var sharedConfig = require('./karma-shared.conf');
|
|
|
|
module.exports = function(config) {
|
|
sharedConfig(config);
|
|
|
|
config.set({
|
|
frameworks: [],
|
|
files: [
|
|
'build/angular-scenario.js',
|
|
'node_modules/karma-ng-scenario/lib/adapter.js',
|
|
'build/docs/docs-scenario.js'
|
|
],
|
|
|
|
proxies: {
|
|
// angular.js, angular-resource.js, etc
|
|
'/angular': 'http://localhost:8000/build/angular',
|
|
'/': 'http://localhost:8000/build/docs/'
|
|
},
|
|
|
|
junitReporter: {
|
|
outputFile: 'test_out/e2e.xml',
|
|
suite: 'E2E'
|
|
}
|
|
});
|
|
|
|
config.sauceLabs.testName = 'AngularJS: e2e';
|
|
};
|