timing.js 242 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 var test = require('../'); test('timing test', function (t) { t.plan(2); t.equal(typeof Date.now, 'function'); var start = new Date; setTimeout(function () { t.equal(new Date - start, 100); }, 100); });