mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 09:09:51 +00:00

Add a "table" parameter to getCoverageReport. Keep the tap coverage output intact. Change the output by adding padding and truncating the tables' cells. Add separation lines for table head/body/foot. Group uncovered lines as ranges. Add yellow color for coverage between 50 and 90. Refs: https://github.com/nodejs/node/pull/46674 PR-URL: https://github.com/nodejs/node/pull/47791 Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
let internalTTy;
|
|
function lazyInternalTTY() {
|
|
internalTTy ??= require('internal/tty');
|
|
return internalTTy;
|
|
}
|
|
|
|
module.exports = {
|
|
blue: '',
|
|
green: '',
|
|
white: '',
|
|
red: '',
|
|
gray: '',
|
|
clear: '',
|
|
hasColors: false,
|
|
shouldColorize(stream) {
|
|
if (process.env.FORCE_COLOR !== undefined) {
|
|
return lazyInternalTTY().getColorDepth() > 2;
|
|
}
|
|
return stream?.isTTY && (
|
|
typeof stream.getColorDepth === 'function' ?
|
|
stream.getColorDepth() > 2 : true);
|
|
},
|
|
refresh() {
|
|
if (process.stderr.isTTY) {
|
|
const hasColors = module.exports.shouldColorize(process.stderr);
|
|
module.exports.blue = hasColors ? '\u001b[34m' : '';
|
|
module.exports.green = hasColors ? '\u001b[32m' : '';
|
|
module.exports.white = hasColors ? '\u001b[39m' : '';
|
|
module.exports.yellow = hasColors ? '\u001b[33m' : '';
|
|
module.exports.red = hasColors ? '\u001b[31m' : '';
|
|
module.exports.gray = hasColors ? '\u001b[90m' : '';
|
|
module.exports.clear = hasColors ? '\u001bc' : '';
|
|
module.exports.hasColors = hasColors;
|
|
}
|
|
},
|
|
};
|
|
|
|
module.exports.refresh();
|