Skip to content

Commit 59a941b

Browse files
committed
Remove jest-junit dependency and related configurations
1 parent 068ccc1 commit 59a941b

File tree

4 files changed

+0
-52
lines changed

4 files changed

+0
-52
lines changed

.github/workflows/fe-code-quality.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,3 @@ jobs:
5555
name: coverage-${{ matrix.jobIndex }}
5656
path: coverage/
5757
retention-days: 7
58-
59-
- name: Upload Junit Reports
60-
uses: actions/upload-artifact@v4
61-
with:
62-
name: junit-${{ matrix.jobIndex }}
63-
path: reports/
64-
retention-days: 7

package-lock.json

Lines changed: 0 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
"@types/jest": "29.5.14",
1717
"@types/node": "^22.15.0",
1818
"jest": "29.7.0",
19-
"jest-junit": "^16.0.0",
2019
"lcov-result-merger": "^5.0.1",
2120
"luxon": "^3.3.0",
2221
"prettier": "2.8.1",

tools/scripts/run-many/run-many.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,6 @@ function main() {
6464
cmd = getE2ECommand(cmd, base);
6565
}
6666

67-
// Add coverage flag if enabled and target is test
68-
if (target === 'test') {
69-
// Add coverage reporters for HTML, lcov and JUnit output
70-
// Note: Using individual project coverage directories
71-
cmd += ' --all --coverage --coverageReporters="lcov,html"';
72-
}
73-
7467
if (projects.length > 0) {
7568
runCommand(cmd);
7669
} else {

0 commit comments

Comments
 (0)