From 57a194d20d0bcc00e737c0c6447fc30df161c1b4 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Fri, 1 Jun 2018 13:31:22 -0400 Subject: [PATCH] remove timer --- lib/tests/run_tests.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/tests/run_tests.js b/lib/tests/run_tests.js index 8d4b12eb4..45f795c96 100644 --- a/lib/tests/run_tests.js +++ b/lib/tests/run_tests.js @@ -22,7 +22,6 @@ function getFilesFromDir(filePath, cb) { module.exports = { run: function (filePath) { - const start = Date.now(); process.env.isTest = true; let failures = 0; if (!filePath) { @@ -90,8 +89,6 @@ module.exports = { // Clean contracts folder for next test run fs.remove('.embark/contracts', (_err) => { - const end = Date.now(); - console.log('Total time', end - start); process.exit(failures); }); });