@uuv/runner-commons 2.36.1 → 2.38.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 CHANGED
@@ -1,3 +1,24 @@
1
+ # [2.38.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.37.0...runner-commons-v2.38.0) (2024-12-15)
2
+
3
+
4
+ ### Features
5
+
6
+ * 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))
7
+
8
+ # [2.37.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.36.1...runner-commons-v2.37.0) (2024-12-08)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **assistant:** update dependency @codemirror/view to v6.35.2 ([33e5c81](https://github.com/e2e-test-quest/uuv/commit/33e5c810caa5c19f96305f721bb10ab8d762ec64))
14
+ * **assistant:** update dependency antd to v5.22.3 ([e47ecd5](https://github.com/e2e-test-quest/uuv/commit/e47ecd56df07c844e3b448e0d02204903c1eb879))
15
+ * **runner-cypress:** update dependency cypress to v13.16.1 ([090cb35](https://github.com/e2e-test-quest/uuv/commit/090cb35efa1ad5c30a44ec4565a653eff1117fc7))
16
+
17
+
18
+ ### Features
19
+
20
+ * **runner-playwright:** update dependency chokidar to v4 ([463c2c0](https://github.com/e2e-test-quest/uuv/commit/463c2c01f60c9ade5de26b1ce2c61c3e27e95cf2))
21
+
1
22
  ## [2.36.1](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.36.0...runner-commons-v2.36.1) (2024-12-02)
2
23
 
3
24
 
@@ -92,7 +92,8 @@
92
92
  },
93
93
  "rgaa": {
94
94
  "default": "",
95
- "defaultWithResult": ""
95
+ "defaultWithResult": "",
96
+ "defaultWithResultContaining": ""
96
97
  }
97
98
  }
98
99
  }
@@ -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)}`);
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uuv/runner-commons",
3
- "version": "2.36.1",
3
+ "version": "2.38.0",
4
4
  "type": "commonjs",
5
5
  "author": "Louis Fredice NJAKO MOLOM (https://github.com/luifr10) & Stanley SERVICAL (https://github.com/stanlee974)",
6
6
  "description": "A common lib for uuv",