Navigation Menu

Skip to content

Commit

Permalink
test: enable mustCall() during child exit
Browse files Browse the repository at this point in the history
PR-URL: #16915
Reviewed-By: Khaidi Chu <i@2333.moe>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
  • Loading branch information
vipinmenon authored and MylesBorins committed Nov 17, 2017
1 parent 0f85885 commit b593d5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/parallel/test-process-raw-debug.js
@@ -1,5 +1,5 @@
'use strict';
require('../common');
const common = require('../common');
const assert = require('assert');
const os = require('os');

Expand Down Expand Up @@ -29,10 +29,10 @@ function parent() {
console.log('ok - got expected message');
});

child.on('exit', function(c) {
child.on('exit', common.mustCall(function(c) {
assert(!c);
console.log('ok - child exited nicely');
});
}));
}

function child() {
Expand Down

0 comments on commit b593d5e

Please sign in to comment.