mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 15:40:22 +00:00
So that when running the docs locally, eg. during e2e testing, we use the latest build version of angular, rather than the stable one from CDN. This fixes e2e tests running with Testacular.
20 lines
471 B
JavaScript
20 lines
471 B
JavaScript
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'
|
|
};
|