mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 17:01:08 +00:00

Export a new common.noop no-operation function for general use. Allow using common.mustCall() without a fn argument to simplify test cases. Replace various non-op functions throughout tests with common.noop PR-URL: https://github.com/nodejs/node/pull/12027 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
12 lines
338 B
JavaScript
12 lines
338 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
// Make sure handle._handle.close(callback) is idempotent by closing a timer
|
|
// twice. The first function should be called, the second one should not.
|
|
|
|
const Timer = process.binding('timer_wrap').Timer;
|
|
const t = new Timer();
|
|
|
|
t.close(common.mustCall());
|
|
t.close(common.mustNotCall());
|