DIR: /proc/1784574/root/usr/share/doc/node-tape/examples/ |
Current File : //proc/1784574/root/usr/share/doc/node-tape/examples/timing.js |
'use strict'; var test = require('tape'); test('timing test', function (t) { t.plan(2); t.equal(typeof Date.now, 'function'); var start = Date.now(); setTimeout(function () { t.ok(Date.now() - start > 100); }, 100); }); |