Skip to content

Commit

Permalink
lib: remove an unnecessary coverage check
Browse files Browse the repository at this point in the history
PR-URL: #12023
Fixes: #11445
Refs: f65a48f
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
  • Loading branch information
Fishrock123 authored and fhinkel committed Mar 26, 2017
1 parent 874b6b9 commit 59d2561
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/internal/process/write-coverage.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@ const fs = require('fs');
const mkdirSync = fs.mkdirSync;
const writeFileSync = fs.writeFileSync;

var isWritingCoverage = false;
function writeCoverage() {
if (isWritingCoverage || !global.__coverage__) {
if (!global.__coverage__) {
return;
}
isWritingCoverage = true;

const dirname = path.join(path.dirname(process.execPath), '.coverage');
const filename = `coverage-${process.pid}-${Date.now()}.json`;
Expand Down

0 comments on commit 59d2561

Please sign in to comment.