Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
karma: Use 'minimal' rather than 'errors-only' for stats (#952)
Browse files Browse the repository at this point in the history
Since otherwise warnings are not even printed (such as those that are
emitted by `eslint-loader` when `failOnError` is `false`).
  • Loading branch information
edmorley committed Jun 14, 2018
1 parent 1108cfe commit 0cde94b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/karma/index.js
Expand Up @@ -52,7 +52,8 @@ module.exports = neutrino => {
[sources]: ['webpack']
},
webpackMiddleware: {
stats: 'errors-only'
// Using minimal rather than 'errors-only' so that warnings are still shown.
stats: 'minimal'
},
webpack: merge(
omit(neutrino.config.toConfig(), ['plugins', 'entry']),
Expand Down

0 comments on commit 0cde94b

Please sign in to comment.