diff --git a/lib/process.js b/lib/process.js index b5af8de..ee78ad2 100644 --- a/lib/process.js +++ b/lib/process.js @@ -8,13 +8,13 @@ const isLinux = () => process.platform === 'linux'; let report = null; const getReport = () => { if (!report) { + /* istanbul ignore next */ if (isLinux() && process.report) { const orig = process.report.excludeNetwork; process.report.excludeNetwork = true; report = process.report.getReport(); process.report.excludeNetwork = orig; } else { - /* istanbul ignore next */ report = {}; } }