Files
angular.js/docs/protractor-conf.js
T
Martin Staffa 1d4216a8bc chore(travis): use Firefox 47
This commit also adds a new capability to the protractor configs that
ensures that all angularjs.org tests run correctly on Firefox. See
https://github.com/SeleniumHQ/selenium/issues/1202
2016-07-22 21:28:59 +02:00

12 lines
194 B
JavaScript

'use strict';
var config = require('../protractor-shared-conf').config;
config.specs = [
'app/e2e/**/*.scenario.js'
];
config.capabilities.browserName = 'chrome';
exports.config = config;