Skip to content

Commit

Permalink
Merge pull request #160 from nmalaguti/feature/no-minify-doc
Browse files Browse the repository at this point in the history
docs: Add FAQ covering disabling minification of sources
  • Loading branch information
dignifiedquire committed Jun 14, 2015
2 parents 5f0de8f + c7dc031 commit c6c0f74
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,25 @@ module.exports = function(config) {
});
```

### FAQ

#### Don't minify instrumenter output

When using the istanbul instrumenter (default), you can disable code compaction by adding the following to your configuration.

```javascript
// karma.conf.js
module.exports = function(config) {
config.set({
coverageReporter: {
instrumenterOptions: {
istanbul: { noCompact: true }
}
}
});
};
```

----

For more information on Karma see the [homepage].
Expand Down

0 comments on commit c6c0f74

Please sign in to comment.