froth-webdriverio-framework 3.0.0 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -33,7 +33,7 @@ async function getBSBuildDetails(sessiontype, bs_username, bs_pwd) {
|
|
|
33
33
|
|
|
34
34
|
} else {
|
|
35
35
|
const errorText = await response.text();
|
|
36
|
-
console.error(`Data fetch failed response:${response.status}`);
|
|
36
|
+
console.error(`Data fetch failed response in getBSBuildDetails:${response.status}`);
|
|
37
37
|
// throw new Error(`HTTP error! status: ${response.status}`);
|
|
38
38
|
}
|
|
39
39
|
|
|
@@ -83,7 +83,7 @@ async function getBSSessionDetails(sessiontype, bs_username, bs_pwd) {
|
|
|
83
83
|
|
|
84
84
|
} else {
|
|
85
85
|
const errorText = await response.text();
|
|
86
|
-
console.error(`Data fetch failed response:${response.status}`);
|
|
86
|
+
console.error(`Data fetch failed response in getBSSessionDetails :${response.status}`);
|
|
87
87
|
// throw new Error(`HTTP error! status: ${response.status}`);
|
|
88
88
|
}
|
|
89
89
|
|
package/config/android.conf.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const deepmerge = require('deepmerge')
|
|
2
|
-
const commonmobileconfig = require('./common.mobile.conf');
|
|
3
2
|
process.env.BROWSERSTACK = true;
|
|
3
|
+
const commonmobileconfig = require('./common.mobile.conf');
|
|
4
4
|
|
|
5
5
|
const androidConfig = deepmerge.all([commonmobileconfig, {
|
|
6
6
|
services: [
|
package/config/api.conf.js
CHANGED
package/config/ios.conf.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// This is the configuration file for iOS devices
|
|
2
2
|
const deepmerge = require('deepmerge')
|
|
3
|
-
const commonmobileconfig = require('./common.mobile.conf');
|
|
4
3
|
process.env.BROWSERSTACK = true;
|
|
4
|
+
const commonmobileconfig = require('./common.mobile.conf');
|
|
5
5
|
|
|
6
6
|
const iosconfig = deepmerge.all([commonmobileconfig, {
|
|
7
7
|
services: [
|
package/config/web.conf.bs.js
CHANGED