Created
June 22, 2016 23:24
-
-
Save m5rk/0fe485ce2932a86017b09c6a75fe8151 to your computer and use it in GitHub Desktop.
karma.config.js snippet for storing coverage in artifacts of CircleCI build
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
coverageReporter: { | |
reporters: [ | |
{type: 'text'}, | |
{ | |
type: 'lcov', | |
dir: process.env.CIRCLE_ARTIFACTS || '.', | |
subdir: 'coverage' | |
} | |
] | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
awesome, thx!