mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +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.
15 lines
400 B
JavaScript
15 lines
400 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/'
|
|
};
|