Skip to content

Commit

Permalink
fix: Set opts.file = '-' on text-lcov (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyfarrell committed Jun 20, 2019
1 parent 2e88507 commit 4be56b2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/istanbul-reports/lib/text-lcov/index.js
Expand Up @@ -7,9 +7,10 @@ const LcovOnly = require('../lcovonly');

class TextLcov extends LcovOnly {
constructor(opts) {
super(opts);

opts.file = '-';
super({
...opts,
file: '-'
});
}
}

Expand Down

0 comments on commit 4be56b2

Please sign in to comment.