blob: 07c79c70321c71bf80bdf1ab2a71724c0ce3c28a (
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 = [ANGULAR_SCENARIO, 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'
};
 |