Skip to content

Instantly share code, notes, and snippets.

@m5rk
Created June 22, 2016 23:24
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save m5rk/0fe485ce2932a86017b09c6a75fe8151 to your computer and use it in GitHub Desktop.
karma.config.js snippet for storing coverage in artifacts of CircleCI build
coverageReporter: {
reporters: [
{type: 'text'},
{
type: 'lcov',
dir: process.env.CIRCLE_ARTIFACTS || '.',
subdir: 'coverage'
}
]
},
@akleiber
Copy link

awesome, thx!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment