@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.
Files changed (2) hide show
  1. package/build/index.js +2 -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.24.9",
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.9",
34
- "@wdio/globals": "8.24.9",
35
- "@wdio/logger": "8.24.9",
36
- "@wdio/types": "8.24.9",
37
- "@wdio/utils": "8.24.9",
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.9",
42
- "webdriverio": "8.24.9"
41
+ "webdriver": "8.24.12",
42
+ "webdriverio": "8.26.0"
43
43
  },
44
44
  "publishConfig": {
45
45
  "access": "public"
46
46
  },
47
- "gitHead": "f102df577324d7e09a2e6607888d775b8245afea"
47
+ "gitHead": "ddff99f6945ebe7d73904e0f3f607b7d46d372c4"
48
48
  }