Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
chore(spec): update spec config files to reflect latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
cnishina committed Mar 17, 2016
1 parent cae175c commit 48d998f
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 17 deletions.
5 changes: 3 additions & 2 deletions lib/taskLogger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@ export default class TaskLogger {
(capabilities.browserName) ? capabilities.browserName : '';
tag += (capabilities.version) ? (' ' + capabilities.version) : '';
tag += (capabilities.platform) ? (' ' + capabilities.platform) : '';
tag += (capabilities.logName && capabilities.count < 2) ? '' : ' #' +
this.task.taskId;
tag += (capabilities.logName && capabilities.count < 2) ?
'' :
' #' + this.task.taskId;
tag += '] ';

data = data.toString();
Expand Down
10 changes: 5 additions & 5 deletions spec/ciFullConf.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ exports.config = {
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
'build': process.env.TRAVIS_BUILD_NUMBER,
'name': 'Protractor suite tests',
'version': '47',
'selenium-version': '2.51.0',
'chromedriver-version': '2.20',
'version': '48',
'selenium-version': '2.52.0',
'chromedriver-version': '2.21',
'platform': 'OS X 10.9'
}, {
'browserName': 'firefox',
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
'build': process.env.TRAVIS_BUILD_NUMBER,
'name': 'Protractor suite tests',
'version': '43',
'selenium-version': '2.48.2'
'version': '44',
'selenium-version': '2.52.0'
}],

baseUrl: env.baseUrl + '/ng1/',
Expand Down
6 changes: 3 additions & 3 deletions spec/ciNg2Conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ exports.config.multiCapabilities = [{
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
'build': process.env.TRAVIS_BUILD_NUMBER,
'name': 'Protractor suite tests',
'version': '47',
'selenium-version': '2.51.0',
'chromedriver-version': '2.20',
'version': '48',
'selenium-version': '2.52.0',
'chromedriver-version': '2.21',
'platform': 'OS X 10.9'
}];
exports.config.capabilities = undefined;
14 changes: 7 additions & 7 deletions spec/ciSmokeConf.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ exports.config = {
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
'build': process.env.TRAVIS_BUILD_NUMBER,
'name': 'Protractor smoke tests',
'version': '46',
'selenium-version': '2.48.2',
'chromedriver-version': '2.19',
'version': '48',
'selenium-version': '2.52.0',
'chromedriver-version': '2.21',
'platform': 'OS X 10.9'
}, {
'browserName': 'firefox',
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
'build': process.env.TRAVIS_BUILD_NUMBER,
'name': 'Protractor smoke tests',
'version': '42',
'selenium-version': '2.48.2'
'version': '44',
'selenium-version': '2.52.0'
}, {
'browserName': 'safari',
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
Expand All @@ -55,15 +55,15 @@ exports.config = {
'build': process.env.TRAVIS_BUILD_NUMBER,
'name': 'Protractor smoke tests',
'version': '11',
'selenium-version': '2.48.2',
'selenium-version': '2.52.0',
'platform': 'Windows 7'
}, {
'browserName': 'internet explorer',
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
'build': process.env.TRAVIS_BUILD_NUMBER,
'name': 'Protractor smoke tests',
'version': '10',
'selenium-version': '2.48.2',
'selenium-version': '2.52.0',
'platform': 'Windows 7'
}],

Expand Down

0 comments on commit 48d998f

Please sign in to comment.