mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
test_runner: replace ansi clear with ansi reset
PR-URL: https://github.com/nodejs/node/pull/55013 Fixes: https://github.com/nodejs/node/issues/55009 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
This commit is contained in:
parent
4f1fe8a015
commit
0c8c107aaa
@ -12,10 +12,10 @@ module.exports = async function* dot(source) {
|
||||
const failedTests = [];
|
||||
for await (const { type, data } of source) {
|
||||
if (type === 'test:pass') {
|
||||
yield `${colors.green}.${colors.clear}`;
|
||||
yield `${colors.green}.${colors.reset}`;
|
||||
}
|
||||
if (type === 'test:fail') {
|
||||
yield `${colors.red}X${colors.clear}`;
|
||||
yield `${colors.red}X${colors.reset}`;
|
||||
ArrayPrototypePush(failedTests, data);
|
||||
}
|
||||
if ((type === 'test:fail' || type === 'test:pass') && ++count === columns) {
|
||||
|
@ -13,6 +13,7 @@ module.exports = {
|
||||
red: '',
|
||||
gray: '',
|
||||
clear: '',
|
||||
reset: '',
|
||||
hasColors: false,
|
||||
shouldColorize(stream) {
|
||||
if (process.env.FORCE_COLOR !== undefined) {
|
||||
@ -32,6 +33,7 @@ module.exports = {
|
||||
module.exports.red = hasColors ? '\u001b[31m' : '';
|
||||
module.exports.gray = hasColors ? '\u001b[90m' : '';
|
||||
module.exports.clear = hasColors ? '\u001bc' : '';
|
||||
module.exports.reset = hasColors ? '\u001b[0m' : '';
|
||||
module.exports.hasColors = hasColors;
|
||||
}
|
||||
},
|
||||
|
@ -1,3 +1,3 @@
|
||||
[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c
|
||||
[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c
|
||||
[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c[32m.c
|
||||
[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m
|
||||
[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m
|
||||
[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m[32m.[0m
|
||||
|
Loading…
Reference in New Issue
Block a user