@wdio/types 7.18.0 → 7.19.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/Options.d.ts +4 -4
- package/package.json +3 -3
package/build/Options.d.ts
CHANGED
|
@@ -215,7 +215,7 @@ export interface WebdriverIO extends Omit<WebDriver, 'capabilities'> {
|
|
|
215
215
|
* @example
|
|
216
216
|
* ```js
|
|
217
217
|
* // wdio.conf.js
|
|
218
|
-
*
|
|
218
|
+
* exports.config
|
|
219
219
|
* // ...
|
|
220
220
|
* capabilities: {
|
|
221
221
|
* browserName: 'safari',
|
|
@@ -228,7 +228,7 @@ export interface WebdriverIO extends Omit<WebDriver, 'capabilities'> {
|
|
|
228
228
|
* @example
|
|
229
229
|
* ```
|
|
230
230
|
* // wdio.conf.js
|
|
231
|
-
*
|
|
231
|
+
* exports.config
|
|
232
232
|
* // ...
|
|
233
233
|
* capabilities: {
|
|
234
234
|
* browserA: {
|
|
@@ -288,7 +288,7 @@ export interface Testrunner extends Hooks, Omit<WebdriverIO, 'capabilities'>, We
|
|
|
288
288
|
* @example
|
|
289
289
|
* ```js
|
|
290
290
|
* // wdio.conf.js
|
|
291
|
-
*
|
|
291
|
+
* exports.config
|
|
292
292
|
* // ...
|
|
293
293
|
* capabilities: [{
|
|
294
294
|
* browserName: 'safari',
|
|
@@ -305,7 +305,7 @@ export interface Testrunner extends Hooks, Omit<WebdriverIO, 'capabilities'>, We
|
|
|
305
305
|
* @example
|
|
306
306
|
* ```
|
|
307
307
|
* // wdio.conf.js
|
|
308
|
-
*
|
|
308
|
+
* exports.config
|
|
309
309
|
* // ...
|
|
310
310
|
* capabilities: {
|
|
311
311
|
* browserA: {
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/types",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.19.0",
|
|
4
4
|
"description": "Utility package providing type information for a variety of WebdriverIO interfaces",
|
|
5
|
-
"author": "Christian Bromann <
|
|
5
|
+
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-types",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "./build/index.js",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"@types/node": "^17.0.4",
|
|
33
33
|
"got": "^11.8.1"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "a17ba0237dcbafa8f0215534c64ff9634caf4b43"
|
|
36
36
|
}
|