Skip to content

Commit

Permalink
test_runner: fix duration_ms to be milliseconds
Browse files Browse the repository at this point in the history
PR-URL: #44450
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
  • Loading branch information
MoLow committed Sep 4, 2022
1 parent aa90e7a commit 6ee1f34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/internal/test_runner/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -615,8 +615,8 @@ class Test extends AsyncResource {
}

#duration() {
// Duration is recorded in BigInt nanoseconds. Convert to seconds.
return Number(this.endTime - this.startTime) / 1_000_000_000;
// Duration is recorded in BigInt nanoseconds. Convert to milliseconds.
return Number(this.endTime - this.startTime) / 1_000_000;
}

report() {
Expand Down

0 comments on commit 6ee1f34

Please sign in to comment.