@wdio/config 8.23.1 → 8.24.2
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/constants.d.ts.map +1 -1
- package/build/constants.js +3 -0
- package/package.json +4 -4
package/build/constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAKpD,eAAO,MAAM,eAAe,EAAE,MAAM,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE,cAAc,
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAKpD,eAAO,MAAM,eAAe,EAAE,MAAM,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE,cAAc,CAsFzE,CAAA;AAEF,eAAO,MAAM,eAAe,EAAE,CAAC,MAAM,QAAQ,CAAC,KAAK,CAAC,EAOnD,CAAA;AAED,eAAO,MAAM,yBAAyB,UAErC,CAAA;AAED,eAAO,MAAM,sBAAsB,QAIlC,CAAA"}
|
package/build/constants.js
CHANGED
|
@@ -72,6 +72,8 @@ export const DEFAULT_CONFIGS = () => ({
|
|
|
72
72
|
after: [],
|
|
73
73
|
onComplete: [],
|
|
74
74
|
onReload: [],
|
|
75
|
+
beforeAssertion: [],
|
|
76
|
+
afterAssertion: [],
|
|
75
77
|
/**
|
|
76
78
|
* cucumber specific hooks
|
|
77
79
|
*/
|
|
@@ -85,6 +87,7 @@ export const DEFAULT_CONFIGS = () => ({
|
|
|
85
87
|
export const SUPPORTED_HOOKS = [
|
|
86
88
|
'before', 'beforeSession', 'beforeSuite', 'beforeHook', 'beforeTest', 'beforeCommand',
|
|
87
89
|
'afterCommand', 'afterTest', 'afterHook', 'afterSuite', 'afterSession', 'after',
|
|
90
|
+
'beforeAssertion', 'afterAssertion',
|
|
88
91
|
// @ts-ignore not defined in core hooks but added with cucumber
|
|
89
92
|
'beforeFeature', 'beforeScenario', 'beforeStep', 'afterStep', 'afterScenario', 'afterFeature',
|
|
90
93
|
'onReload', 'onPrepare', 'onWorkerStart', 'onWorkerEnd', 'onComplete'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/config",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.24.2",
|
|
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",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@wdio/logger": "8.16.17",
|
|
40
|
-
"@wdio/types": "8.
|
|
41
|
-
"@wdio/utils": "8.
|
|
40
|
+
"@wdio/types": "8.24.2",
|
|
41
|
+
"@wdio/utils": "8.24.2",
|
|
42
42
|
"decamelize": "^6.0.0",
|
|
43
43
|
"deepmerge-ts": "^5.0.0",
|
|
44
44
|
"glob": "^10.2.2",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"minimatch": "^9.0.0",
|
|
52
52
|
"tsconfig-paths": "^4.1.0"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "6c01d2d2c47c32988e8b01ee9c43279f813b2e41"
|
|
55
55
|
}
|