@wdio/types 8.15.10 → 8.16.3
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/Options.d.ts +1 -1
- package/build/Services.d.ts +1 -1
- package/package.json +2 -2
package/build/Options.d.ts
CHANGED
|
@@ -265,7 +265,7 @@ export interface WebdriverIO extends Omit<WebDriver, 'capabilities'> {
|
|
|
265
265
|
*/
|
|
266
266
|
automationProtocol?: SupportedProtocols;
|
|
267
267
|
/**
|
|
268
|
-
* If running on Sauce Labs, you can choose to run tests between different
|
|
268
|
+
* If running on Sauce Labs, you can choose to run tests between different data centers:
|
|
269
269
|
* US or EU. To change your region to EU, add region: 'eu' to your config.
|
|
270
270
|
*/
|
|
271
271
|
region?: SauceRegions;
|
package/build/Services.d.ts
CHANGED
|
@@ -168,7 +168,7 @@ export interface HookFunctions {
|
|
|
168
168
|
* @param {*} result.result return object of test function
|
|
169
169
|
* @param {number} result.duration duration of test
|
|
170
170
|
* @param {boolean} result.passed true if test has passed, otherwise false
|
|
171
|
-
* @param {object} result.retries
|
|
171
|
+
* @param {object} result.retries information about spec related retries, e.g. `{ attempts: 0, limit: 0 }`
|
|
172
172
|
*/
|
|
173
173
|
afterTest?(test: Test, context: any, result: TestResult): unknown | Promise<unknown>;
|
|
174
174
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/types",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.16.3",
|
|
4
4
|
"description": "Utility package providing type information for a variety of WebdriverIO interfaces",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-types",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@types/node": "^20.1.0"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "2c05558b0e4d6ecdca5eb7b0ed37d4a4e733b5a5"
|
|
36
36
|
}
|