https://github.com/angular/angular
Raw File
Tip revision: 81e6d13241d143b6e72a09530314db5a9e24aeaa authored by vsavkin on 24 March 2015, 14:50:39 UTC
chore: bump up the version to 2.0.0-alpha.15
Tip revision: 81e6d13
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