aboutsummaryrefslogtreecommitdiffstats
path: root/karma-e2e.conf.js
blob: d70d8522998f482627165c58d3824fd9c109f349 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var angularFiles = require(__dirname + '/angularFiles.js');

files = ['build/angular-scenario.js', ANGULAR_SCENARIO_ADAPTER, 'build/docs/docs-scenario.js'];

autoWatch = false;
singleRun = true;
logLevel = LOG_INFO;
logColors = true;
browsers = ['Chrome'];

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'
};