bcac64b7b5
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
14 lines
258 B
JavaScript
14 lines
258 B
JavaScript
'use strict';
|
|
|
|
var config = require('./protractor-shared-conf').config;
|
|
|
|
config.specs = [
|
|
'test/e2e/tests/**/*.js',
|
|
'build/docs/ptore2e/**/*.js',
|
|
'docs/app/e2e/**/*.scenario.js'
|
|
];
|
|
|
|
config.capabilities.browserName = 'chrome';
|
|
|
|
exports.config = config;
|