mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-04-07 22:37:28 +08:00
FirefoxDriver seems to have an issue with FF29 which is breaking a test case, and causing false negatives. There is an issue opened on protractor regarding this at https://github.com/angular/protractor/issues/784 Closes #7369
27 lines
734 B
JavaScript
27 lines
734 B
JavaScript
var config = require('./protractor-shared-conf').config;
|
|
|
|
config.sauceUser = process.env.SAUCE_USERNAME;
|
|
config.sauceKey = process.env.SAUCE_ACCESS_KEY;
|
|
|
|
config.multiCapabilities = [{
|
|
'browserName': 'chrome',
|
|
'name': 'Angular E2E',
|
|
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
|
|
'build': process.env.TRAVIS_BUILD_NUMBER
|
|
}, {
|
|
'browserName': 'firefox',
|
|
'name': 'Angular E2E',
|
|
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
|
|
'build': process.env.TRAVIS_BUILD_NUMBER,
|
|
'version': '28'
|
|
}, {
|
|
browserName: 'safari',
|
|
'platform': 'OS X 10.9',
|
|
'version': '7',
|
|
'name': 'Angular E2E',
|
|
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
|
|
'build': process.env.TRAVIS_BUILD_NUMBER
|
|
}];
|
|
|
|
exports.config = config;
|