Sha256: 48507160cf3f4ee0797ca8aea6e4c79285fad5f1fe992aedcc425c3724afe997
Contents?: true
Size: 479 Bytes
Versions: 5
Compression:
Stored size: 479 Bytes
Contents
'use strict'; require('../common'); var assert = require('assert'); var start = process.hrtime(); // process.hrtime() should return an Array assert(Array.isArray(start)); // busy-loop for 2 seconds var now = Date.now(); while (Date.now() - now < 2000); // get a diff reading var diff = process.hrtime(start); // should be at least 1 second, at most 2 seconds later // (the while loop will usually exit a few nanoseconds before 2) assert(diff[0] >= 1); assert(diff[0] <= 2);
Version data entries
5 entries across 4 versions & 1 rubygems