UNPKG

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