https://github.com/angular/angular
Raw File
Tip revision: 2ef6e486ba473694b64eb88b3c3e51bb426b35a0 authored by Marc Laval on 09 June 2015, 15:49:44 UTC
chore(windows): fix the test.unit.dart task
Tip revision: 2ef6e48
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