remove timer

This commit is contained in:
Jonathan Rainville 2018-06-01 13:31:22 -04:00
parent 61a518f569
commit 57a194d20d
1 changed files with 0 additions and 3 deletions

View File

@ -22,7 +22,6 @@ function getFilesFromDir(filePath, cb) {
module.exports = { module.exports = {
run: function (filePath) { run: function (filePath) {
const start = Date.now();
process.env.isTest = true; process.env.isTest = true;
let failures = 0; let failures = 0;
if (!filePath) { if (!filePath) {
@ -90,8 +89,6 @@ module.exports = {
// Clean contracts folder for next test run // Clean contracts folder for next test run
fs.remove('.embark/contracts', (_err) => { fs.remove('.embark/contracts', (_err) => {
const end = Date.now();
console.log('Total time', end - start);
process.exit(failures); process.exit(failures);
}); });
}); });