lib: fix guard expression in timer.unref()
[platform/upstream/nodejs.git] / test / parallel / test-timers-unref-call.js
1 // Copyright (c) 2014, StrongLoop Inc.
2 //
3 // Permission to use, copy, modify, and/or distribute this software for any
4 // purpose with or without fee is hereby granted, provided that the above
5 // copyright notice and this permission notice appear in all copies.
6 //
7 // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 // MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 // ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13 // OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14
15 var common = require('../common');
16
17 var Timer = process.binding('timer_wrap').Timer;
18 Timer.now = function() { return ++Timer.now.ticks; };
19 Timer.now.ticks = 0;
20
21 var t = setInterval(function() {}, 1);
22 var o = { _idleStart: 0, _idleTimeout: 1 };
23 t.unref.call(o);
24
25 setTimeout(clearInterval.bind(null, t), 2);