Files
react/perf/tests/sanity.js
T
2014-01-06 12:26:40 -05:00

16 lines
315 B
JavaScript

if (typeof exports == 'undefined') exports = {};
/*http://benchmarkjs.com/docs#options*/
exports.name = 'Trivial benchmark to verify that everything works';
exports.setup = function(){
var foo;
};
exports.fn = function(){
foo = Array(999).join('Howdy!\n');
};
exports.teardown = function(){
foo = null;
};