We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55f3d42 commit 8dc7c8aCopy full SHA for 8dc7c8a
lib/internal/test_runner/reporter/dot.js
@@ -7,10 +7,10 @@ module.exports = async function* dot(source) {
7
let columns = getLineLength();
8
for await (const { type } of source) {
9
if (type === 'test:pass') {
10
- yield '${green}.${clear}';
+ yield `${green}.${clear}`;
11
}
12
if (type === 'test:fail') {
13
- yield '${red}X${clear}';
+ yield `${red}X${clear}`;
14
15
if ((type === 'test:fail' || type === 'test:pass') && ++count === columns) {
16
yield '\n';
0 commit comments