We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39adfc8 commit 2a67a49Copy full SHA for 2a67a49
test/parallel/test-child-process-kill.js
@@ -29,7 +29,7 @@ cat.stdout.on('end', common.mustCall());
29
cat.stderr.on('data', common.mustNotCall());
30
cat.stderr.on('end', common.mustCall());
31
32
-cat.on('exit', common.mustCall(function(code, signal) {
+cat.on('exit', common.mustCall((code, signal) => {
33
assert.strictEqual(code, null);
34
assert.strictEqual(signal, 'SIGTERM');
35
}));
0 commit comments