summaryrefslogtreecommitdiff
path: root/test/parallel/test-timers-now.js
blob: 8a47e397ce97a8c2354f5ee011275f1e01333dc1 (plain)
1
2
3
4
5
6
7
8
'use strict';

require('../common');
const assert = require('assert');

// Return value of Timer.now() should easily fit in a SMI right after start-up.
const Timer = process.binding('timer_wrap').Timer;
assert(Timer.now() < 0x3ffffff);