From e27bdfccf06167db6de8e5b689bc90b12e93f3fe Mon Sep 17 00:00:00 2001 From: cloudhead Date: Sun, 6 Jun 2010 00:10:45 -0400 Subject: [PATCH] round time output --- lib/vows/console.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vows/console.js b/lib/vows/console.js index c8b0f8f..8cc25f6 100644 --- a/lib/vows/console.js +++ b/lib/vows/console.js @@ -37,7 +37,7 @@ this.result = function (event) { if ('time' in event) { buffer.push("Verified " + event.total + " vows in " + - (event.time + " seconds.\n")); + (event.time.toFixed(3) + " seconds.\n")); } buffer.push(this.stylize(result, style));