6fa1bb03db
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
12 lines
194 B
JavaScript
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;
|