summaryrefslogtreecommitdiff
path: root/test/parallel/test-event-emitter-once.js
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2017-03-24 09:46:44 -0700
committerJames M Snell <jasnell@gmail.com>2017-03-26 12:47:15 -0700
commit4f2e372716714ed030cb5ba6e67107b913f15343 (patch)
tree9b86be4f904c7844c48cca4194f3c3a5a1decad8 /test/parallel/test-event-emitter-once.js
parentd13bd4acc0b60191f0d6e9fae92087242d04dfbd (diff)
downloadnode-new-4f2e372716714ed030cb5ba6e67107b913f15343.tar.gz
test: add common.noop, default for common.mustCall()
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>
Diffstat (limited to 'test/parallel/test-event-emitter-once.js')
-rw-r--r--test/parallel/test-event-emitter-once.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-event-emitter-once.js b/test/parallel/test-event-emitter-once.js
index d440947ed2..bbd29c8437 100644
--- a/test/parallel/test-event-emitter-once.js
+++ b/test/parallel/test-event-emitter-once.js
@@ -26,7 +26,7 @@ const EventEmitter = require('events');
const e = new EventEmitter();
-e.once('hello', common.mustCall(function(a, b) {}));
+e.once('hello', common.mustCall());
e.emit('hello', 'a', 'b');
e.emit('hello', 'a', 'b');
@@ -45,7 +45,7 @@ e.once('e', common.mustCall(function() {
e.emit('e');
}));
-e.once('e', common.mustCall(function() {}));
+e.once('e', common.mustCall());
e.emit('e');