Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
paths:
- node_modules
- run: make test
- store_test_results:
path: junit-reports
publish:
docker:
- image: circleci/node:4-browsers
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
coverage
node_modules
package-lock.json
junit-reports
2 changes: 1 addition & 1 deletion karma.conf.ci.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ module.exports = function(config) {
customLaunchers: customLaunchers,

junitReporter: {
outputDir: process.env.TEST_REPORTS_DIR,
outputDir: 'junit-reports',
suite: require('./package.json').name
},

Expand Down