froth-webdriverio-framework 3.0.0 → 3.0.1
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.
- package/config/android.conf.js +1 -1
- package/config/api.conf.js +1 -1
- package/config/ios.conf.js +1 -1
- package/config/web.conf.bs.js +1 -1
- package/package.json +1 -1
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