Skip to content

Commit fc6576e

Browse files
authored
fixed the case that when displaying all tests, error had no circle emoji (#29)
1 parent edc5f52 commit fc6576e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7265,7 +7265,7 @@ const resultTypes = [
72657265
];
72667266
const resultTypesWithEmoji = zip(
72677267
resultTypes,
7268-
["green", "yellow", "yellow", "red", "red", , "red"].map(
7268+
["green", "yellow", "yellow", "red", "red", "red"].map(
72697269
(color) => `:${color}_circle:`
72707270
)
72717271
);

src/results.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const resultTypes = [
1717
];
1818
const resultTypesWithEmoji = zip(
1919
resultTypes,
20-
["green", "yellow", "yellow", "red", "red", , "red"].map(
20+
["green", "yellow", "yellow", "red", "red", "red"].map(
2121
(color) => `:${color}_circle:`
2222
)
2323
);

0 commit comments

Comments
 (0)