tracking
Version:
A modern approach for Computer Vision on the web.
15 lines (12 loc) • 326 B
JavaScript
var Benchmark = require('./utils/benchmark.js');
module.exports = {
setUp: function(done) {
Benchmark.setUpAll(done);
},
testBenchmark: function(test) {
Benchmark.runAll(function(results) {
test.ok(results.passed, Benchmark.createFailureMessage(results.resultDetails));
test.done();
});
}
};