Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Commit 64c5df9

Browse files
authored
Merge pull request #88 from segmentio/test-results
Report pretty test summary in CI
2 parents 373e9e0 + c590398 commit 64c5df9

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.circleci/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
paths:
1515
- node_modules
1616
- run: make test
17+
- store_test_results:
18+
path: junit-reports
1719
publish:
1820
docker:
1921
- image: circleci/node:4-browsers

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
coverage
22
node_modules
33
package-lock.json
4+
junit-reports

karma.conf.ci.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ module.exports = function(config) {
8585
customLaunchers: customLaunchers,
8686

8787
junitReporter: {
88-
outputDir: process.env.TEST_REPORTS_DIR,
88+
outputDir: 'junit-reports',
8989
suite: require('./package.json').name
9090
},
9191

0 commit comments

Comments
 (0)