Skip to content

Commit eba9add

Browse files
BethGriggsitaloacasas
authored andcommittedJan 30, 2017
test: refactor test-timer-close
Refactor and simplify parallel/test-timer-close.js. Add comment to describe the test case. PR-URL: #10517 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]>
1 parent dd9aefd commit eba9add

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed
 

‎test/parallel/test-timer-close.js

+7-12
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
'use strict';
2-
require('../common');
3-
const assert = require('assert');
2+
const common = require('../common');
43

5-
var t = new (process.binding('timer_wrap').Timer)();
6-
var called = 0;
7-
function onclose() {
8-
called++;
9-
}
4+
// Make sure handle._handle.close(callback) is idempotent by closing a timer
5+
// twice. The first function should be called, the second one should not.
106

11-
t.close(onclose);
12-
t.close(onclose);
7+
const Timer = process.binding('timer_wrap').Timer;
8+
const t = new Timer();
139

14-
process.on('exit', function() {
15-
assert.equal(1, called);
16-
});
10+
t.close(common.mustCall(function() {}));
11+
t.close(() => common.fail('This should never be called'));

0 commit comments

Comments
 (0)
Please sign in to comment.