https://github.com/angular/angular
Raw File
Tip revision: 7d5c3eb001b25ff06143dfab03c9422f56ebb10d authored by Tobias Bosch on 06 October 2015, 19:11:51 UTC
chore(changelog): update change log to alpha.39
Tip revision: 7d5c3eb
protractor-js.conf.js
var data = module.exports = require('./protractor-shared.js');
var config = data.config;

config.baseUrl = 'http://localhost:8001/';
// TODO: remove exclusion when JS verison of scrolling benchmark is available
config.exclude.push('dist/js/cjs/benchmarks_external/e2e_test/naive_infinite_scroll_spec.js');
config.exclude.push('dist/js/cjs/benchmarks_external/e2e_test/naive_infinite_scroll_perf.js');

data.createBenchpressRunner({ lang: 'js' });

back to top