Skip to content

Commit 15f309c

Browse files
committed
lint fix
1 parent edb224e commit 15f309c

File tree

1 file changed

+2
-1
lines changed
  • lib/internal/test_runner/reporter

1 file changed

+2
-1
lines changed

lib/internal/test_runner/reporter/spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const {
55
ArrayPrototypePush,
66
ArrayPrototypeShift,
77
ArrayPrototypeUnshift,
8+
Date,
89
} = primordials;
910
const assert = require('assert');
1011
const Transform = require('internal/streams/transform');
@@ -108,7 +109,7 @@ class SpecReporter extends Transform {
108109
}
109110
break;
110111
case 'test:watch:restarted':
111-
return `\nRestarted at ${new Date().toLocaleTimeString()}\n`
112+
return `\nRestarted at ${new Date().toLocaleTimeString()}\n`;
112113
}
113114
}
114115
_transform({ type, data }, encoding, callback) {

0 commit comments

Comments
 (0)