@trackunit/iris-app-e2e 1.10.6 → 1.11.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,32 @@
1
+ ## 1.11.0 (2026-05-10)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **vitest:** use istanbul as the coverage provider ([80313642422](https://github.com/Trackunit/manager/commit/80313642422))
6
+ - **vitest-config:** add coverage reporting for multiple apps and libraries ([5cf4844dfaa](https://github.com/Trackunit/manager/commit/5cf4844dfaa))
7
+
8
+ ### 🩹 Fixes
9
+
10
+ - **iris-app-e2e:** add missing installLogsPrinter import in defaultPlugins ([67b4dc7b160](https://github.com/Trackunit/manager/commit/67b4dc7b160))
11
+ - **tests:** add optional chaining to mock calls in various test files ([80a9d94d4ce](https://github.com/Trackunit/manager/commit/80a9d94d4ce))
12
+
13
+ ### ❤️ Thank You
14
+
15
+ - Cursor @cursoragent
16
+ - Mikkel Thorbjørn Andersen
17
+
18
+ ## 1.10.8 (2026-05-07)
19
+
20
+ ### 🧱 Updated Dependencies
21
+
22
+ - Updated react-test-setup to 1.9.8
23
+
24
+ ## 1.10.7 (2026-05-07)
25
+
26
+ ### 🧱 Updated Dependencies
27
+
28
+ - Updated react-test-setup to 1.9.7
29
+
1
30
  ## 1.10.6 (2026-05-07)
2
31
 
3
32
  ### 🧱 Updated Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-e2e",
3
- "version": "1.10.6",
3
+ "version": "1.11.0",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "generators": "./generators.json",
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.setupPlugins = exports.defaultCypressConfig = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const crypto_1 = tslib_1.__importDefault(require("crypto"));
6
+ const installLogsPrinter_1 = tslib_1.__importDefault(require("cypress-terminal-report/src/installLogsPrinter"));
6
7
  const fs_1 = require("fs");
7
8
  const node_xlsx_1 = require("node-xlsx");
8
9
  const path_1 = tslib_1.__importDefault(require("path"));
@@ -99,15 +100,14 @@ const setupPlugins = (on, config, logWriter, installHarGenerator) => {
99
100
  /* ---- BEGIN: Logging setup ---- */
100
101
  // Read options https://github.com/archfz/cypress-terminal-report
101
102
  const options = {
102
- printLogsToFile: "always", // Ensures logs are always printed to a file
103
+ printLogsToFile: "always",
103
104
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
104
105
  collectTestLogs: (context, logs) => {
105
106
  const testName = (0, fileNameBuilder_1.fileNameBuilder)(context.test, context.state);
106
107
  (0, createLogFile_1.createLogFile)(config.nxRoot, config.logsFolder, testName, logs, logWriter);
107
108
  },
108
109
  };
109
- // eslint-disable-next-line @typescript-eslint/no-require-imports
110
- require("cypress-terminal-report/src/installLogsPrinter")(on, options);
110
+ (0, installLogsPrinter_1.default)(on, options);
111
111
  /* ---- END: Logging setup ---- */
112
112
  /* ---- BEGIN: Task setup ---- */
113
113
  on("task", {