Skip to content

Commit

Permalink
force string for all build/job id (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
PinkyJie committed Dec 24, 2015
1 parent b0391f3 commit 007c5ab
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions protractor.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ if (args.ci) {
config.multiCapabilities = [
{
name: `Chrome (build-${args.buildId})`,
build: args.buildId,
'tunnel-identifier': args.jobId,
build: `${args.buildId}`,
'tunnel-identifier': `${args.jobId}`,
browserName: 'chrome',
platform: 'Windows 7',
maxDuration: 3600,
Expand All @@ -71,8 +71,8 @@ if (args.ci) {
},
{
name: `Safari (build-${args.buildId})`,
build: args.buildId,
'tunnel-identifier': args.jobId,
build: `${args.buildId}`,
'tunnel-identifier': `${args.jobId}`,
browserName: 'safari',
platform: 'OS X 10.11',
maxDuration: 3600,
Expand All @@ -81,8 +81,8 @@ if (args.ci) {
},
{
name: `IE (build-${args.buildId})`,
build: args.buildId,
'tunnel-identifier': args.jobId,
build: `${args.buildId}`,
'tunnel-identifier': `${args.jobId}`,
browserName: 'internet explorer',
platform: 'Windows 7',
version: '11.0',
Expand All @@ -92,8 +92,8 @@ if (args.ci) {
},
{
name: `iOS (build-${args.buildId})`,
build: args.buildId,
'tunnel-identifier': args.jobId,
build: `${args.buildId}`,
'tunnel-identifier': `${args.jobId}`,
browserName: 'iphone',
platform: 'OS X 10.10',
version: '9.1',
Expand All @@ -105,8 +105,8 @@ if (args.ci) {
},
{
name: `Android (build-${args.buildId})`,
build: args.buildId,
'tunnel-identifier': args.jobId,
build: `${args.buildId}`,
'tunnel-identifier': `${args.jobId}`,
browserName: 'android',
platform: 'Linux',
version: '4.4',
Expand Down

0 comments on commit 007c5ab

Please sign in to comment.