File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ exports.config = {
1515 build : 'webdriver-browserstack' ,
1616 device : 'Google Pixel' ,
1717 browserName : 'android' ,
18- app : 'bs://<hashed app-id>' ,
18+ app : process . env . BROWSERSTACK_APP_ID || 'bs://<hashed app-id>' ,
1919 'browserstack.local' : true ,
2020 'browserstack.debug' : true
2121 } ] ,
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ exports.config = {
1313 build : 'webdriver-browserstack' ,
1414 device : 'Google Nexus 9' ,
1515 browserName : 'android' ,
16- app : 'bs://<hashed app-id>' ,
16+ app : process . env . BROWSERSTACK_APP_ID || 'bs://<hashed app-id>' ,
1717 'browserstack.debug' : true
1818 } ] ,
1919
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ exports.config = {
1313 name : 'parallel_appium_test' ,
1414 build : 'webdriver-browserstack' ,
1515 browserName : 'android' ,
16- app : 'bs://<hashed app-id>' ,
16+ app : process . env . BROWSERSTACK_APP_ID || 'bs://<hashed app-id>' ,
1717 'browserstack.debug' : true
1818 } ,
1919
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ exports.config = {
1313 build : 'webdriver-browserstack' ,
1414 device : 'Samsung Galaxy S7' ,
1515 browserName : 'android' ,
16- app : 'bs://<hashed app-id>' ,
16+ app : process . env . BROWSERSTACK_APP_ID || 'bs://<hashed app-id>' ,
1717 'browserstack.debug' : true
1818 } ] ,
1919
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ exports.config = {
1414 name : 'local_appium_test' ,
1515 build : 'webdriver-browserstack' ,
1616 device : 'iPhone 7' ,
17- app : 'bs://<hashed app-id>' ,
17+ app : process . env . BROWSERSTACK_APP_ID || 'bs://<hashed app-id>' ,
1818 'browserstack.local' : true ,
1919 'browserstack.debug' : true
2020 } ] ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ exports.config = {
1212 name : 'multiple_appium_test' ,
1313 build : 'webdriver-browserstack' ,
1414 device : 'iPhone 7' ,
15- app : 'bs://<hashed app-id>' ,
15+ app : process . env . BROWSERSTACK_APP_ID || 'bs://<hashed app-id>' ,
1616 'browserstack.debug' : true
1717 } ] ,
1818
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ exports.config = {
1212 commonCapabilities : {
1313 name : 'parallel_appium_test' ,
1414 build : 'webdriver-browserstack' ,
15- app : 'bs://<hashed app-id>' ,
15+ app : process . env . BROWSERSTACK_APP_ID || 'bs://<hashed app-id>' ,
1616 'browserstack.debug' : true
1717 } ,
1818
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ exports.config = {
1212 name : 'single_appium_test' ,
1313 build : 'webdriver-browserstack' ,
1414 device : 'iPhone 7' ,
15- app : 'bs://<hashed app-id>' ,
15+ app : process . env . BROWSERSTACK_APP_ID || 'bs://<hashed app-id>' ,
1616 'browserstack.debug' : true
1717 } ] ,
1818
You can’t perform that action at this time.
0 commit comments