remove timer
This commit is contained in:
parent
61a518f569
commit
57a194d20d
|
@ -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);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue