@wdio/config 8.16.22 → 8.17.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/utils.d.ts +3 -3
- package/build/utils.d.ts.map +1 -1
- package/package.json +4 -4
package/build/utils.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { Options } from '@wdio/types';
|
|
2
2
|
import type { ModuleImportService } from './types.js';
|
|
3
3
|
export declare const validObjectOrArray: (object: any) => object is object | any[];
|
|
4
4
|
/**
|
|
@@ -14,8 +14,8 @@ export declare function removeLineNumbers(filePath: string): string;
|
|
|
14
14
|
* @param {string|string[]} spec
|
|
15
15
|
*/
|
|
16
16
|
export declare function isCucumberFeatureWithLineNumber(spec: string | string[]): boolean;
|
|
17
|
-
export declare function isCloudCapability(caps:
|
|
18
|
-
export declare function isAppiumCapability(caps:
|
|
17
|
+
export declare function isCloudCapability(caps: WebdriverIO.Capabilities): boolean;
|
|
18
|
+
export declare function isAppiumCapability(caps: WebdriverIO.Capabilities): boolean;
|
|
19
19
|
/**
|
|
20
20
|
* validates configurations based on default values
|
|
21
21
|
* @param {Object} defaults object describing all allowed properties
|
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,
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AAE1C,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAA;AAIrD,eAAO,MAAM,kBAAkB,WAAY,GAAG,6BACoB,CAAA;AAElE;;;;;GAKG;AACH,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,MAAM,UAMjD;AAED;;;;GAIG;AACH,wBAAgB,+BAA+B,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,WAGtE;AAED,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,WAAW,CAAC,YAAY,WAE/D;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,WAAW,CAAC,YAAY,WAMhE;AAED;;;;;GAKG;AACH,wBAAgB,cAAc,CAAC,CAAC,EAAE,QAAQ,EAAE,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,CAAC,EAAE,UAAU,cAAoB,KA+C5G;AAED,wBAAsB,iBAAiB,CAAC,iBAAiB,EAAE,OAAO,CAAC,iBAAiB,EAAE,cAAc,EAAE,mBAAmB,gCAYxH;AAED,wBAAsB,sBAAsB,CAAE,iBAAiB,EAAE,OAAO,CAAC,iBAAiB,oBAuBzF;AAED,wBAAgB,WAAW,CAAE,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,QAkBxD;AAED,wBAAsB,iBAAiB,CAAE,SAAS,iCAA0B,EAAE,cAAc,EAAE,mBAAmB,oBAehH;AAED,wBAAgB,iBAAiB,CAAE,KAAK,GAAE,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC,EAAO,GAAG,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC,EAAE,CAkB3F"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/config",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.17.0",
|
|
4
4
|
"description": "A helper utility to parse and validate WebdriverIO options",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-config",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@wdio/logger": "8.16.17",
|
|
33
|
-
"@wdio/types": "8.
|
|
34
|
-
"@wdio/utils": "8.
|
|
33
|
+
"@wdio/types": "8.17.0",
|
|
34
|
+
"@wdio/utils": "8.17.0",
|
|
35
35
|
"decamelize": "^6.0.0",
|
|
36
36
|
"deepmerge-ts": "^5.0.0",
|
|
37
37
|
"glob": "^10.2.2",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"minimatch": "^9.0.0",
|
|
46
46
|
"tsconfig-paths": "^4.1.0"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "f7fe9474c580fc2003f6abca130e44ed025b1bd5"
|
|
49
49
|
}
|