Skip to content

Commit b8e9261

Browse files
committed
small formatting changes
1 parent ca25caa commit b8e9261

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mocha-reporter-spec-with-retries",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"description": "Mocha's spec reporter with retried test information.",
55
"main": "src/index.js",
66
"files": [

src/index.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,13 @@ function SpecWithRetries (runner, options) {
6464
Base.consoleLog(fmt, stats.failures);
6565

6666
Base.list(this.failures);
67-
Base.consoleLog();
6867
}
6968

7069
// unstable tests
7170
if (stats.unstables.length) {
72-
fmt = color('bright yellow', ' Unstable(s):');
71+
Base.consoleLog();
72+
73+
fmt = color('bright yellow', ' Unstable tests(s):');
7374

7475
Base.consoleLog(fmt);
7576

0 commit comments

Comments
 (0)