@wdio/runner 8.0.0-alpha.607 → 8.0.0-alpha.620
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/build/browser.d.ts +4 -2
- package/build/browser.d.ts.map +1 -1
- package/build/browser.js +14 -6
- package/build/index.d.ts +1 -1
- package/build/index.d.ts.map +1 -1
- package/build/index.js +33 -15
- package/build/utils.d.ts.map +1 -1
- package/build/utils.js +6 -2
- package/package.json +9 -9
package/build/browser.d.ts
CHANGED
|
@@ -16,14 +16,16 @@ export default class BrowserFramework implements Omit<TestFramework, 'init'> {
|
|
|
16
16
|
private _specs;
|
|
17
17
|
private _capabilities;
|
|
18
18
|
private _reporter;
|
|
19
|
-
constructor(_cid: string, _config:
|
|
19
|
+
constructor(_cid: string, _config: {
|
|
20
|
+
sessionId?: string;
|
|
21
|
+
}, _specs: string[], _capabilities: Capabilities.RemoteCapability, _reporter: BaseReporter);
|
|
20
22
|
/**
|
|
21
23
|
* always return true as it is unrelevant for component testing
|
|
22
24
|
*/
|
|
23
25
|
hasTests(): boolean;
|
|
24
26
|
init(): TestFramework;
|
|
25
27
|
run(): Promise<number>;
|
|
26
|
-
static init(cid: string, config:
|
|
28
|
+
static init(cid: string, config: any, specs: string[], caps: Capabilities.RemoteCapability, reporter: BaseReporter): BrowserFramework;
|
|
27
29
|
}
|
|
28
30
|
export {};
|
|
29
31
|
//# sourceMappingURL=browser.d.ts.map
|
package/build/browser.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"browser.d.ts","sourceRoot":"","sources":["../src/browser.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAE/C,OAAO,KAAK,YAAY,MAAM,YAAY,CAAA;AAC1C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAK5C,KAAK,cAAc,GAAG,IAAI,CAAC,UAAU,EAAE,UAAU,GAAG,SAAS,CAAC,CAAA;AAE9D,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,MAAM;QACZ,cAAc,EAAE,cAAc,EAAE,CAAA;QAChC,cAAc,EAAE,GAAG,EAAE,CAAA;QACrB,gBAAgB,EAAE,MAAM,CAAA;KAC3B;CACJ;AAID,MAAM,CAAC,OAAO,OAAO,gBAAiB,YAAW,IAAI,CAAC,aAAa,EAAE,MAAM,CAAC;;IAEpE,OAAO,CAAC,IAAI;IACZ,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,SAAS;gBAJT,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"browser.d.ts","sourceRoot":"","sources":["../src/browser.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAE/C,OAAO,KAAK,YAAY,MAAM,YAAY,CAAA;AAC1C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAK5C,KAAK,cAAc,GAAG,IAAI,CAAC,UAAU,EAAE,UAAU,GAAG,SAAS,CAAC,CAAA;AAE9D,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,MAAM;QACZ,cAAc,EAAE,cAAc,EAAE,CAAA;QAChC,cAAc,EAAE,GAAG,EAAE,CAAA;QACrB,gBAAgB,EAAE,MAAM,CAAA;KAC3B;CACJ;AAID,MAAM,CAAC,OAAO,OAAO,gBAAiB,YAAW,IAAI,CAAC,aAAa,EAAE,MAAM,CAAC;;IAEpE,OAAO,CAAC,IAAI;IACZ,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,SAAS;gBAJT,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,EAC/B,MAAM,EAAE,MAAM,EAAE,EAChB,aAAa,EAAE,YAAY,CAAC,gBAAgB,EAC5C,SAAS,EAAE,YAAY;IAGnC;;OAEG;IACH,QAAQ;IAIR,IAAI;IAIE,GAAG;IA0FT,MAAM,CAAC,IAAI,CAAE,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,YAAY,CAAC,gBAAgB,EAAE,QAAQ,EAAE,YAAY;CAItH"}
|
package/build/browser.js
CHANGED
|
@@ -44,7 +44,14 @@ export default class BrowserFramework {
|
|
|
44
44
|
let failures = 0;
|
|
45
45
|
for (const spec of this._specs) {
|
|
46
46
|
log.info(`Run spec file ${spec} for cid ${this._cid}`);
|
|
47
|
-
|
|
47
|
+
/**
|
|
48
|
+
* if a `sessionId` is part of `this._config` it means we are in watch mode and are
|
|
49
|
+
* re-using a previous session. Since Vite has already a hotreload feature, there
|
|
50
|
+
* is no need to call the url command again
|
|
51
|
+
*/
|
|
52
|
+
if (!this._config.sessionId) {
|
|
53
|
+
await browser.url(`/${this._cid}/test.html?spec=${url.fileURLToPath(spec)}`);
|
|
54
|
+
}
|
|
48
55
|
// await browser.debug()
|
|
49
56
|
/**
|
|
50
57
|
* fetch page errors that are thrown during rendering and let spec file fail
|
|
@@ -52,11 +59,11 @@ export default class BrowserFramework {
|
|
|
52
59
|
const jsErrors = (await browser.execute(() => window.__wdioErrors__)) || ([]);
|
|
53
60
|
if (jsErrors.length) {
|
|
54
61
|
const errors = jsErrors.map((ev) => `${path.basename(ev.filename)}: ${ev.message}`);
|
|
55
|
-
const
|
|
56
|
-
|
|
57
|
-
|
|
62
|
+
const { name, message, stack } = new Error(`Test failed due to following error(s):${sep}${errors.join(sep)}`);
|
|
63
|
+
process.send({
|
|
64
|
+
origin: 'worker',
|
|
58
65
|
name: 'error',
|
|
59
|
-
content:
|
|
66
|
+
content: { name, message, stack }
|
|
60
67
|
});
|
|
61
68
|
failures += 1;
|
|
62
69
|
continue;
|
|
@@ -79,7 +86,8 @@ export default class BrowserFramework {
|
|
|
79
86
|
}
|
|
80
87
|
return true;
|
|
81
88
|
}, {
|
|
82
|
-
timeoutMsg: 'browser test timed out'
|
|
89
|
+
timeoutMsg: 'browser test timed out',
|
|
90
|
+
timeout: 15 * 1000
|
|
83
91
|
});
|
|
84
92
|
/**
|
|
85
93
|
* populate events to the reporter
|
package/build/index.d.ts
CHANGED
|
@@ -52,7 +52,7 @@ export default class Runner extends EventEmitter {
|
|
|
52
52
|
* end WebDriver session, a config object can be applied if object has changed
|
|
53
53
|
* within a hook by the user
|
|
54
54
|
*/
|
|
55
|
-
endSession(): Promise<void>;
|
|
55
|
+
endSession(payload?: any): Promise<void>;
|
|
56
56
|
}
|
|
57
57
|
export { default as BaseReporter } from './reporter.js';
|
|
58
58
|
export * from './types.js';
|
package/build/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAa1C,OAAO,KAAK,EACoD,SAAS,EAGxE,MAAM,SAAS,CAAA;AAIhB,MAAM,CAAC,OAAO,OAAO,MAAO,SAAQ,YAAY;;IAC5C,OAAO,CAAC,QAAQ,CAAC,CAAgD;IACjE,OAAO,CAAC,aAAa,CAAC,CAAc;IACpC,OAAO,CAAC,gBAAgB,CAAQ;IAChC,OAAO,CAAC,cAAc,CAAQ;IAC9B,OAAO,CAAC,sBAAsB,CAAI;IAElC,OAAO,CAAC,SAAS,CAAC,CAAc;IAChC,OAAO,CAAC,UAAU,CAAC,CAAe;IAClC,OAAO,CAAC,OAAO,CAAC,CAAoB;IACpC,OAAO,CAAC,IAAI,CAAC,CAAQ;IACrB,OAAO,CAAC,MAAM,CAAC,CAAU;IACzB,OAAO,CAAC,KAAK,CAAC,CAA+B;IAE7C;;;;;;;;;OASG;IACG,GAAG,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,UAAU,EAAE,OAAO,EAAE,EAAE,SAAS;IAgLpE;;;;;;OAMG;YACW,YAAY;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAa1C,OAAO,KAAK,EACoD,SAAS,EAGxE,MAAM,SAAS,CAAA;AAIhB,MAAM,CAAC,OAAO,OAAO,MAAO,SAAQ,YAAY;;IAC5C,OAAO,CAAC,QAAQ,CAAC,CAAgD;IACjE,OAAO,CAAC,aAAa,CAAC,CAAc;IACpC,OAAO,CAAC,gBAAgB,CAAQ;IAChC,OAAO,CAAC,cAAc,CAAQ;IAC9B,OAAO,CAAC,sBAAsB,CAAI;IAElC,OAAO,CAAC,SAAS,CAAC,CAAc;IAChC,OAAO,CAAC,UAAU,CAAC,CAAe;IAClC,OAAO,CAAC,OAAO,CAAC,CAAoB;IACpC,OAAO,CAAC,IAAI,CAAC,CAAQ;IACrB,OAAO,CAAC,MAAM,CAAC,CAAU;IACzB,OAAO,CAAC,KAAK,CAAC,CAA+B;IAE7C;;;;;;;;;OASG;IACG,GAAG,CAAC,EAAE,GAAG,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,UAAU,EAAE,OAAO,EAAE,EAAE,SAAS;IAgLpE;;;;;;OAMG;YACW,YAAY;IAkC1B;;;;;OAKG;YACW,aAAa;IAkD3B;;OAEG;YACW,gBAAgB;IA8D9B;;OAEG;YACW,SAAS;IAmCvB;;;OAGG;IACG,UAAU,CAAC,OAAO,CAAC,EAAE,GAAG;CAsEjC;AAED,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,eAAe,CAAA;AACvD,cAAc,YAAY,CAAA"}
|
package/build/index.js
CHANGED
|
@@ -6,6 +6,7 @@ import { initialiseWorkerService, initialisePlugin, executeHooksWithArgs } from
|
|
|
6
6
|
import { ConfigParser } from '@wdio/config';
|
|
7
7
|
import { _setGlobal } from '@wdio/globals';
|
|
8
8
|
import { expect, setOptions } from 'expect-webdriverio';
|
|
9
|
+
import { attach } from 'webdriverio';
|
|
9
10
|
import BrowserFramework from './browser.js';
|
|
10
11
|
import BaseReporter from './reporter.js';
|
|
11
12
|
import { initialiseInstance, filterLogTypes, getInstancesData } from './utils.js';
|
|
@@ -73,7 +74,7 @@ export default class Runner extends EventEmitter {
|
|
|
73
74
|
if (!this._framework.hasTests()) {
|
|
74
75
|
return this._shutdown(0, retries, true);
|
|
75
76
|
}
|
|
76
|
-
browser = await this._initSession(this._config, this._caps
|
|
77
|
+
browser = await this._initSession(this._config, this._caps);
|
|
77
78
|
/**
|
|
78
79
|
* return if session initialisation failed
|
|
79
80
|
*/
|
|
@@ -182,21 +183,12 @@ export default class Runner extends EventEmitter {
|
|
|
182
183
|
* @param {Object} browserStub stubbed `browser` object with only capabilities, config and env flags
|
|
183
184
|
* @return {Promise} resolves with browser object or null if session couldn't get established
|
|
184
185
|
*/
|
|
185
|
-
async _initSession(config, caps
|
|
186
|
+
async _initSession(config, caps) {
|
|
186
187
|
const browser = await this._startSession(config, caps);
|
|
187
188
|
// return null if session couldn't get established
|
|
188
189
|
if (!browser) {
|
|
189
190
|
return;
|
|
190
191
|
}
|
|
191
|
-
// add flags declared by user to browser object
|
|
192
|
-
if (browserStub) {
|
|
193
|
-
Object.entries(browserStub).forEach(([key, value]) => {
|
|
194
|
-
if (typeof browser[key] === 'undefined') {
|
|
195
|
-
// @ts-ignore allow to set value for undefined props
|
|
196
|
-
browser[key] = value;
|
|
197
|
-
}
|
|
198
|
-
});
|
|
199
|
-
}
|
|
200
192
|
/**
|
|
201
193
|
* register global helper method to fetch elements
|
|
202
194
|
*/
|
|
@@ -220,10 +212,25 @@ export default class Runner extends EventEmitter {
|
|
|
220
212
|
*/
|
|
221
213
|
async _startSession(config, caps) {
|
|
222
214
|
try {
|
|
215
|
+
/**
|
|
216
|
+
* get all custom or overwritten commands users tried to register before the
|
|
217
|
+
* test started, e.g. after all imports
|
|
218
|
+
*/
|
|
219
|
+
const customStubCommands = this._browser?.customCommands || [];
|
|
220
|
+
const overwrittenCommands = this._browser?.overwrittenCommands || [];
|
|
223
221
|
this._browser = await initialiseInstance(config, caps, this._isMultiremote);
|
|
224
222
|
_setGlobal('browser', this._browser, config.injectGlobals);
|
|
225
223
|
_setGlobal('driver', this._browser, config.injectGlobals);
|
|
226
224
|
_setGlobal('expect', expect, config.injectGlobals);
|
|
225
|
+
/**
|
|
226
|
+
* re-assign previously registered custom commands to the actual instance
|
|
227
|
+
*/
|
|
228
|
+
for (const params of customStubCommands) {
|
|
229
|
+
this._browser.addCommand(...params);
|
|
230
|
+
}
|
|
231
|
+
for (const params of overwrittenCommands) {
|
|
232
|
+
this._browser.overwriteCommand(...params);
|
|
233
|
+
}
|
|
227
234
|
/**
|
|
228
235
|
* import and set options for `expect-webdriverio` assertion lib once
|
|
229
236
|
* the browser was initiated
|
|
@@ -334,7 +341,7 @@ export default class Runner extends EventEmitter {
|
|
|
334
341
|
* end WebDriver session, a config object can be applied if object has changed
|
|
335
342
|
* within a hook by the user
|
|
336
343
|
*/
|
|
337
|
-
async endSession() {
|
|
344
|
+
async endSession(payload) {
|
|
338
345
|
/**
|
|
339
346
|
* make sure instance(s) exist and have `sessionId`
|
|
340
347
|
*/
|
|
@@ -350,10 +357,21 @@ export default class Runner extends EventEmitter {
|
|
|
350
357
|
*/
|
|
351
358
|
: this._browser?.sessionId);
|
|
352
359
|
/**
|
|
353
|
-
*
|
|
354
|
-
*
|
|
360
|
+
* in watch mode we create a new child process to kill the
|
|
361
|
+
* session, see packages/wdio-local-runner/src/index.ts,
|
|
362
|
+
* therefore we need to attach to the session to kill it
|
|
355
363
|
*/
|
|
356
|
-
if (!hasSessionId) {
|
|
364
|
+
if (!hasSessionId && payload?.args.config.sessionId) {
|
|
365
|
+
this._browser = await attach({
|
|
366
|
+
...payload.args.config,
|
|
367
|
+
capabilities: payload?.args.capabilities
|
|
368
|
+
});
|
|
369
|
+
}
|
|
370
|
+
else if (!hasSessionId) {
|
|
371
|
+
/**
|
|
372
|
+
* don't do anything if test framework returns after SIGINT
|
|
373
|
+
* if endSession is called without payload we expect a session id
|
|
374
|
+
*/
|
|
357
375
|
return;
|
|
358
376
|
}
|
|
359
377
|
/**
|
package/build/utils.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AACxD,OAAO,KAAK,EAAE,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAA;AAI9D,MAAM,WAAW,mBAAoB,SAAQ,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE,cAAc,CAAC;IACjF,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,YAAY,CAAC,gBAAgB,CAAA;CAC9C;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CACxB,IAAI,EAAE,YAAY,CAAC,gBAAgB,EACnC,SAAS,CAAC,EAAE,OAAO,GACpB,IAAI,CAAC,YAAY,CAAC,gBAAgB,EAAE,UAAU,CAAC,CAoBjD;AAED;;;;;;GAMG;AACH,wBAAsB,kBAAkB,CACpC,MAAM,EAAE,mBAAmB,EAC3B,YAAY,EAAE,YAAY,CAAC,gBAAgB,EAC3C,aAAa,CAAC,EAAE,OAAO,GACxB,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,kBAAkB,CAAC,OAAO,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AACxD,OAAO,KAAK,EAAE,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAA;AAI9D,MAAM,WAAW,mBAAoB,SAAQ,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE,cAAc,CAAC;IACjF,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,YAAY,CAAC,gBAAgB,CAAA;CAC9C;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CACxB,IAAI,EAAE,YAAY,CAAC,gBAAgB,EACnC,SAAS,CAAC,EAAE,OAAO,GACpB,IAAI,CAAC,YAAY,CAAC,gBAAgB,EAAE,UAAU,CAAC,CAoBjD;AAED;;;;;;GAMG;AACH,wBAAsB,kBAAkB,CACpC,MAAM,EAAE,mBAAmB,EAC3B,YAAY,EAAE,YAAY,CAAC,gBAAgB,EAC3C,aAAa,CAAC,EAAE,OAAO,GACxB,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,kBAAkB,CAAC,OAAO,CAAC,CAAC,CAgDzD;AAED;;;;;GAKG;AACH,wBAAgB,cAAc,CAC1B,iBAAiB,EAAE,MAAM,EAAE,EAC3B,cAAc,EAAE,MAAM,EAAE,YAiB3B;AAED,KAAK,WAAW,GAAG;IACf,SAAS,EAAE,MAAM,CAAA;IACjB,KAAK,EAAE,OAAO,CAAA;IACd,QAAQ,EAAE,MAAM,CAAA;IAChB,QAAQ,EAAE,MAAM,CAAA;IAChB,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;CACtC,CAAA;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAC5B,OAAO,EAAE,OAAO,CAAC,OAAO,CAAC,GAAG,kBAAkB,CAAC,OAAO,CAAC,EACvD,aAAa,EAAE,OAAO,oDAgBzB"}
|
package/build/utils.js
CHANGED
|
@@ -43,7 +43,7 @@ export async function initialiseInstance(config, capabilities, isMultiremote) {
|
|
|
43
43
|
* propagate connection details defined by services or user in capabilities
|
|
44
44
|
*/
|
|
45
45
|
const { protocol, hostname, port, path } = capabilities;
|
|
46
|
-
return attach({ ...config, ...{ protocol, hostname, port, path } });
|
|
46
|
+
return attach({ ...config, ...{ protocol, hostname, port, path }, capabilities });
|
|
47
47
|
}
|
|
48
48
|
if (!isMultiremote) {
|
|
49
49
|
log.debug('init remote session');
|
|
@@ -62,7 +62,11 @@ export async function initialiseInstance(config, capabilities, isMultiremote) {
|
|
|
62
62
|
options[browserName] = deepmerge(config, capabilities[browserName]);
|
|
63
63
|
}
|
|
64
64
|
const browser = await multiremote(options, config);
|
|
65
|
-
|
|
65
|
+
/**
|
|
66
|
+
* only attach to global environment if `injectGlobals` is set to true
|
|
67
|
+
*/
|
|
68
|
+
const browserNames = config.injectGlobals ? Object.keys(capabilities) : [];
|
|
69
|
+
for (let browserName of browserNames) {
|
|
66
70
|
// @ts-ignore allow random global browser names
|
|
67
71
|
global[browserName] = browser[browserName];
|
|
68
72
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/runner",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.620+56a4ae1f2",
|
|
4
4
|
"description": "A WebdriverIO service that runs tests in arbitrary environments",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-runner",
|
|
@@ -26,19 +26,19 @@
|
|
|
26
26
|
"types": "./build/index.d.ts",
|
|
27
27
|
"typeScriptVersion": "3.8.3",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@wdio/config": "8.0.0-alpha.
|
|
30
|
-
"@wdio/globals": "8.0.0-alpha.
|
|
31
|
-
"@wdio/logger": "8.0.0-alpha.
|
|
32
|
-
"@wdio/types": "8.0.0-alpha.
|
|
33
|
-
"@wdio/utils": "8.0.0-alpha.
|
|
29
|
+
"@wdio/config": "8.0.0-alpha.620+56a4ae1f2",
|
|
30
|
+
"@wdio/globals": "8.0.0-alpha.620+56a4ae1f2",
|
|
31
|
+
"@wdio/logger": "8.0.0-alpha.620+56a4ae1f2",
|
|
32
|
+
"@wdio/types": "8.0.0-alpha.620+56a4ae1f2",
|
|
33
|
+
"@wdio/utils": "8.0.0-alpha.620+56a4ae1f2",
|
|
34
34
|
"deepmerge-ts": "^4.2.2",
|
|
35
35
|
"expect-webdriverio": "^4.0.0-alpha.3",
|
|
36
36
|
"gaze": "^1.1.2",
|
|
37
|
-
"webdriver": "8.0.0-alpha.
|
|
38
|
-
"webdriverio": "8.0.0-alpha.
|
|
37
|
+
"webdriver": "8.0.0-alpha.620+56a4ae1f2",
|
|
38
|
+
"webdriverio": "8.0.0-alpha.620+56a4ae1f2"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "56a4ae1f236fc71721e15c077cdc35964093bbe4"
|
|
44
44
|
}
|