Skip to content

Commit

Permalink
[#1503] Static web UI junit file name & gitignored
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-pavel committed Oct 30, 2024
1 parent 62fae39 commit c11b835
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,13 @@
# generated documentation
/doc/build

# output from backend unit tests coverage
# output from backend unit tests
/backend/coverage.out
/backend/junit.xml

# output from UI unit tests
/webui/junit.xml

# ctags
TAGS

Expand Down
6 changes: 5 additions & 1 deletion webui/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ module.exports = function (config) {
reports: ['html', 'lcovonly', 'text-summary'],
fixWebpackSourcePaths: true,
},
reporters: ['progress', 'kjhtml', 'spec', 'junit'],
junitReporter: {
outputFile: 'junit.xml',
useBrowserName: false,
},
reporters: ['junit', 'kjhtml', 'progress', 'spec'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
Expand Down

0 comments on commit c11b835

Please sign in to comment.