Skip to content

Commit cbe937a

Browse files
authored
fix: stringify summary (#13)
1 parent c501ae7 commit cbe937a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ module.exports = {
137137
const { summary, errors } = formatResults({ results, thresholds });
138138
console.log(summary);
139139
show({
140-
summary,
140+
summary: JSON.stringify(summary, null, 2),
141141
});
142142

143143
if (errors.length > 0) {

0 commit comments

Comments
 (0)