@wdio/runner 8.24.9 → 8.26.0
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/index.js +2 -2
- package/package.json +9 -9
package/build/index.js
CHANGED
|
@@ -245,8 +245,8 @@ export default class Runner extends EventEmitter {
|
|
|
245
245
|
* the browser was initiated
|
|
246
246
|
*/
|
|
247
247
|
setOptions({
|
|
248
|
-
wait: config.waitforTimeout,
|
|
249
|
-
interval: config.waitforInterval,
|
|
248
|
+
wait: config.waitforTimeout, // ms to wait for expectation to succeed
|
|
249
|
+
interval: config.waitforInterval, // interval between attempts
|
|
250
250
|
beforeAssertion: async (params) => {
|
|
251
251
|
await Promise.all([
|
|
252
252
|
this._reporter?.emit('client:beforeAssertion', { ...params, sessionId: this._browser?.sessionId }),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/runner",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.26.0",
|
|
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",
|
|
@@ -30,19 +30,19 @@
|
|
|
30
30
|
"typeScriptVersion": "3.8.3",
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@types/node": "^20.1.0",
|
|
33
|
-
"@wdio/config": "8.24.
|
|
34
|
-
"@wdio/globals": "8.
|
|
35
|
-
"@wdio/logger": "8.24.
|
|
36
|
-
"@wdio/types": "8.24.
|
|
37
|
-
"@wdio/utils": "8.24.
|
|
33
|
+
"@wdio/config": "8.24.12",
|
|
34
|
+
"@wdio/globals": "8.26.0",
|
|
35
|
+
"@wdio/logger": "8.24.12",
|
|
36
|
+
"@wdio/types": "8.24.12",
|
|
37
|
+
"@wdio/utils": "8.24.12",
|
|
38
38
|
"deepmerge-ts": "^5.0.0",
|
|
39
39
|
"expect-webdriverio": "^4.6.1",
|
|
40
40
|
"gaze": "^1.1.2",
|
|
41
|
-
"webdriver": "8.24.
|
|
42
|
-
"webdriverio": "8.
|
|
41
|
+
"webdriver": "8.24.12",
|
|
42
|
+
"webdriverio": "8.26.0"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "ddff99f6945ebe7d73904e0f3f607b7d46d372c4"
|
|
48
48
|
}
|