Skip to content

Commit 19414ba

Browse files
Use local app file upload feature
1 parent 1993c23 commit 19414ba

File tree

15 files changed

+30
-16
lines changed

15 files changed

+30
-16
lines changed
19.4 MB
Binary file not shown.
6.31 MB
Binary file not shown.

android/examples/run-first-test/first.conf.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ exports.config = {
2828
waitforTimeout: 10000,
2929
connectionRetryTimeout: 90000,
3030
connectionRetryCount: 3,
31-
services: [['browserstack']],
31+
services: [['browserstack', {
32+
app: 'assets/SampleAndroidApp.apk'
33+
}]],
3234

3335
framework: 'mocha',
3436
mochaOpts: {

android/examples/run-local-test/local.conf.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ exports.config = {
55
// Adding browserstackLocal to browserstack-service to initiate local binary
66
services: [
77
['browserstack', {
8-
browserstackLocal: true
8+
browserstackLocal: true,
9+
app: 'assets/SampleLocalAndroidApp.apk'
910
}]
1011
],
1112

android/examples/run-multiple-test/multiple.conf.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ exports.config = {
2828
waitforTimeout: 10000,
2929
connectionRetryTimeout: 90000,
3030
connectionRetryCount: 3,
31-
services: [['browserstack']],
31+
services: [['browserstack', {
32+
app: 'assets/SampleAndroidApp.apk'
33+
}]],
3234

3335
framework: 'mocha',
3436
mochaOpts: {

android/examples/run-parallel-test/parallel.conf.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ exports.config = {
4040
waitforTimeout: 10000,
4141
connectionRetryTimeout: 90000,
4242
connectionRetryCount: 3,
43-
services: [['browserstack']],
43+
services: [['browserstack', {
44+
app: 'assets/SampleAndroidApp.apk'
45+
}]],
4446

4547
framework: 'mocha',
4648
mochaOpts: {

android/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
"@wdio/cli": "^7.23.0"
2929
},
3030
"devDependencies": {
31-
"@wdio/browserstack-service": "^7.23.0",
32-
"@wdio/local-runner": "^7.23.0",
33-
"@wdio/mocha-framework": "^7.23.0"
31+
"@wdio/browserstack-service": "^7.25.0",
32+
"@wdio/local-runner": "^7.25.0",
33+
"@wdio/mocha-framework": "^7.25.0"
3434
}
3535
}

ios/assets/SampleIosApp.ipa

5.04 MB
Binary file not shown.

ios/assets/SampleLocalIosApp.ipa

12.1 MB
Binary file not shown.

ios/examples/run-first-test/first.conf.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ exports.config = {
2828
waitforTimeout: 10000,
2929
connectionRetryTimeout: 90000,
3030
connectionRetryCount: 3,
31-
services: [['browserstack']],
31+
services: [['browserstack', {
32+
app: 'assets/SampleIosApp.ipa'
33+
}]],
3234

3335
framework: 'mocha',
3436
mochaOpts: {

0 commit comments

Comments
 (0)