froth-webdriverio-framework 6.0.6 → 6.0.7

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.
@@ -145,7 +145,7 @@ function normalizeCapabilities(rawCaps, sessionType, platform) {
145
145
  'appium:deviceOrientation': rawCaps.deviceOrientation,
146
146
  'appium:app': rawCaps.app || "",
147
147
  'bstack:options': {
148
- // appProfiling: rawCaps.appProfiling,
148
+ // appProfiling: rawCaps.appProfiling,
149
149
  networkLogs: rawCaps.networkLogs,
150
150
  debug: rawCaps.debug,
151
151
  interactiveDebugging: rawCaps.interactiveDebugging,
@@ -156,7 +156,7 @@ function normalizeCapabilities(rawCaps, sessionType, platform) {
156
156
  }
157
157
  };
158
158
  }
159
- return rawCaps;
159
+ return rawCaps;
160
160
 
161
161
  }
162
162
  const normalizedCaps = normalizeCapabilities(capabilities, process.env.BS_SESSION_TYPE, PLATFORM);
@@ -169,12 +169,18 @@ exports.config = deepmerge(commonconfig,
169
169
  key: process.env.BROWSERSTACK_ACCESS_KEY,
170
170
  // debug: true,
171
171
  // execArgv: ['--inspect-brk'],
172
- services: PLATFORM === 'browserstack'
173
- ? ['browserstack', { browserstackLocal: false }]
174
- : PLATFORM === 'saucelabs'
175
- ? ['sauce']
176
- : [],
177
-
172
+ // services: PLATFORM === 'browserstack'
173
+ // ? [['browserstack', { browserstackLocal: false }]]
174
+ // : PLATFORM === 'saucelabs'
175
+ // ? ['sauce']
176
+ // : [],
177
+
178
+ services: [
179
+ [
180
+ 'browserstack',
181
+ { browserstackLocal: false, opts: { forcelocal: false } },
182
+ ],
183
+ ],
178
184
  //runner: 'local',
179
185
  specs: require(SUITE_FILE).tests,
180
186
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "froth-webdriverio-framework",
3
- "version": "6.0.6",
3
+ "version": "6.0.7",
4
4
  "readme": "WebdriverIO Integration",
5
5
  "description": "WebdriverIO and BrowserStack App Automate",
6
6
  "license": "MIT",