@uuv/runner-commons 2.37.0 → 2.39.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/CHANGELOG.md +23 -0
- package/dist/assets/i18n/web/template.json +2 -1
- package/dist/cli/helper.js +3 -0
- package/dist/cli/options.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
# [2.39.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.38.0...runner-commons-v2.39.0) (2024-12-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **assistant:** update dependency @uiw/codemirror-theme-github to v4.23.7 ([186f12e](https://github.com/e2e-test-quest/uuv/commit/186f12e27cead4d33ea237f0397262d6af3ba515))
|
|
7
|
+
* **assistant:** update dependency @uiw/react-codemirror to v4.23.7 ([357b9cf](https://github.com/e2e-test-quest/uuv/commit/357b9cfb908a5a8b90e67053328abb4b05ab069d))
|
|
8
|
+
* **assistant:** update dependency antd to v5.22.5 ([9dc158d](https://github.com/e2e-test-quest/uuv/commit/9dc158d474a9e507b4c8f3054fc8808371064937))
|
|
9
|
+
* **runner-playwright:** update playwright monorepo to v1.49.1 ([101653f](https://github.com/e2e-test-quest/uuv/commit/101653f646eb6e881fde6ef5b5af608f2856eec1))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* **runner-cypress:** update dependency cypress to v13.17.0 ([937dd6e](https://github.com/e2e-test-quest/uuv/commit/937dd6eb08c10c89e095d04e1965596dd95c14dc))
|
|
15
|
+
* **runner-playwright:** update dependency webpack to v5.97.1 ([f8ad895](https://github.com/e2e-test-quest/uuv/commit/f8ad895ddad3f3a752f384c9bb9b6a128526bc5d))
|
|
16
|
+
|
|
17
|
+
# [2.38.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.37.0...runner-commons-v2.38.0) (2024-12-15)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add a11y-dashboard project to workspace, [#460](https://github.com/e2e-test-quest/uuv/issues/460) ([5051848](https://github.com/e2e-test-quest/uuv/commit/5051848c426350746ba319f7227c10d4af71b0fe))
|
|
23
|
+
|
|
1
24
|
# [2.37.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.36.1...runner-commons-v2.37.0) (2024-12-08)
|
|
2
25
|
|
|
3
26
|
|
package/dist/cli/helper.js
CHANGED
|
@@ -59,6 +59,7 @@ class UUVCliHelper {
|
|
|
59
59
|
return {
|
|
60
60
|
// eslint-disable-next-line dot-notation
|
|
61
61
|
baseUrl: process.env["UUV_BASE_URL"],
|
|
62
|
+
projectDir: process.cwd(),
|
|
62
63
|
browser,
|
|
63
64
|
extraArgs: env,
|
|
64
65
|
targetTestFile,
|
|
@@ -67,6 +68,7 @@ class UUVCliHelper {
|
|
|
67
68
|
outputDir: reportDir,
|
|
68
69
|
a11y: {
|
|
69
70
|
enabled: argv.generateA11yReport,
|
|
71
|
+
relativePath: path_1.default.join("reports", "a11y-report.json"),
|
|
70
72
|
outputFile: path_1.default.join(process.cwd(), reportDir, "a11y-report.json")
|
|
71
73
|
},
|
|
72
74
|
html: {
|
|
@@ -85,6 +87,7 @@ class UUVCliHelper {
|
|
|
85
87
|
if (options.baseUrl) {
|
|
86
88
|
console.debug(` -> baseUrl: ${options.baseUrl}`);
|
|
87
89
|
}
|
|
90
|
+
console.debug(` -> projectDir: ${options.projectDir}`);
|
|
88
91
|
console.debug(` -> browser: ${options.browser}`);
|
|
89
92
|
console.debug(` -> report: ${JSON.stringify(options.report)}`);
|
|
90
93
|
console.debug(` -> env: ${JSON.stringify(options.extraArgs)}`);
|
package/dist/cli/options.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export declare enum UUV_TARGET_COMMAND {
|
|
|
5
5
|
}
|
|
6
6
|
export type UUVCliOptions = {
|
|
7
7
|
baseUrl: string;
|
|
8
|
+
projectDir: string;
|
|
8
9
|
command: UUV_TARGET_COMMAND;
|
|
9
10
|
browser: string;
|
|
10
11
|
targetTestFile: string;
|
|
@@ -12,6 +13,7 @@ export type UUVCliOptions = {
|
|
|
12
13
|
outputDir: string;
|
|
13
14
|
a11y: {
|
|
14
15
|
enabled: boolean;
|
|
16
|
+
relativePath: string;
|
|
15
17
|
outputFile: string;
|
|
16
18
|
};
|
|
17
19
|
html: {
|
package/package.json
CHANGED