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