@trackunit/iris-app-e2e 1.9.26 → 1.9.28
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 +21 -0
- package/package.json +1 -1
- package/src/plugins/createLogFile.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## 1.9.28 (2026-04-28)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated react-test-setup to 1.8.114
|
|
6
|
+
|
|
7
|
+
## 1.9.27 (2026-04-28)
|
|
8
|
+
|
|
9
|
+
### 🩹 Fixes
|
|
10
|
+
|
|
11
|
+
- clear no-floating-promises violations ([2364957a011](https://github.com/Trackunit/manager/commit/2364957a011))
|
|
12
|
+
|
|
13
|
+
### 🧱 Updated Dependencies
|
|
14
|
+
|
|
15
|
+
- Updated react-test-setup to 1.8.113
|
|
16
|
+
|
|
17
|
+
### ❤️ Thank You
|
|
18
|
+
|
|
19
|
+
- Aleksandar Yanev Mihaylov @aleksandarmihaylov
|
|
20
|
+
- Cursor Agent @cursoragent
|
|
21
|
+
|
|
1
22
|
## 1.9.26 (2026-04-27)
|
|
2
23
|
|
|
3
24
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -17,13 +17,13 @@ function createLogFile(nxRoot, logsPath, fileNameWithoutExtension, logs, logWrit
|
|
|
17
17
|
fs_1.default.mkdirSync(logsPath, { recursive: true });
|
|
18
18
|
}
|
|
19
19
|
const logFilePath = path_1.default.join(logsPath, fileNameWithoutExtension);
|
|
20
|
-
(0, writeFileWithPrettier_1.writeFileWithPrettier)(nxRoot, logFilePath + "-all.json", JSON.stringify(logs), { flag: "a" }, logWriter);
|
|
20
|
+
void (0, writeFileWithPrettier_1.writeFileWithPrettier)(nxRoot, logFilePath + "-all.json", JSON.stringify(logs), { flag: "a" }, logWriter);
|
|
21
21
|
const errorCmds = logs.filter(log => log.severity === "error" &&
|
|
22
22
|
// This seems to be when apollo has cancelled requests it marks it as failed to fetch only on cypress ?!??
|
|
23
23
|
// might be fixed by https://github.com/Trackunit/manager/pull/12917
|
|
24
24
|
!log.message.includes("TypeError: Failed to fetch"));
|
|
25
25
|
if (errorCmds.length > 0) {
|
|
26
|
-
(0, writeFileWithPrettier_1.writeFileWithPrettier)(nxRoot, logFilePath + "-errors.json", JSON.stringify(errorCmds), {
|
|
26
|
+
void (0, writeFileWithPrettier_1.writeFileWithPrettier)(nxRoot, logFilePath + "-errors.json", JSON.stringify(errorCmds), {
|
|
27
27
|
flag: "a",
|
|
28
28
|
}, logWriter);
|
|
29
29
|
}
|
|
@@ -34,7 +34,7 @@ function createLogFile(nxRoot, logsPath, fileNameWithoutExtension, logs, logWrit
|
|
|
34
34
|
// This seems to be when apollo has cancelled requests it marks it as failed to fetch only on cypress ?!??
|
|
35
35
|
!log.message.includes("TypeError: Failed to fetch"));
|
|
36
36
|
if (networkErrorsCmds.length > 0) {
|
|
37
|
-
(0, writeFileWithPrettier_1.writeFileWithPrettier)(nxRoot, logFilePath + "-network-errors.json", JSON.stringify(networkErrorsCmds), {
|
|
37
|
+
void (0, writeFileWithPrettier_1.writeFileWithPrettier)(nxRoot, logFilePath + "-network-errors.json", JSON.stringify(networkErrorsCmds), {
|
|
38
38
|
flag: "a",
|
|
39
39
|
}, logWriter);
|
|
40
40
|
}
|