Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #18 from landau/patch-1
add ops to csv output
  • Loading branch information
logicalparadox committed Dec 22, 2015
2 parents e8c8aa2 + 6fbf8f3 commit e0d3562
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/matcha/reporters/csv.js
Expand Up @@ -35,7 +35,8 @@ module.exports = function(runner, utils) {
curSuite + '","' +
curBench + '",' +
results.elapsed.toFixed(6) + "," +
results.iterations
results.iterations + "," +
results.ops.toFixed(0)
);
});
};

0 comments on commit e0d3562

Please sign in to comment.