Skip to content

Commit

Permalink
Fix min/max
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeliog committed Oct 18, 2018
1 parent 550ea09 commit 872aad5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ const executeBenchmark = async () => {
console.log(`Command: jest ${args.join(' ')}`);
console.log(`Number of runs: ${NUM_RUNS}`);
console.log(`Average: ${average}s`);
console.log(`Max: ${min}s`);
console.log(`Min: ${max}s`);
console.log(`Max: ${max}s`);
console.log(`Min: ${min}s`);
};

executeBenchmark();

0 comments on commit 872aad5

Please sign in to comment.