diff options
Diffstat (limited to 'tests/node_compat/test/fixtures/child-process-spawn-node.js')
-rw-r--r-- | tests/node_compat/test/fixtures/child-process-spawn-node.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/node_compat/test/fixtures/child-process-spawn-node.js b/tests/node_compat/test/fixtures/child-process-spawn-node.js index da2b557c9..d403aabf9 100644 --- a/tests/node_compat/test/fixtures/child-process-spawn-node.js +++ b/tests/node_compat/test/fixtures/child-process-spawn-node.js @@ -1,7 +1,5 @@ const assert = require("assert"); -// TODO(kt3k): Uncomment this when util.debuglog is added -// const debug = require('util').debuglog('test'); -const debug = console.log; +const debug = require('util').debuglog('test'); function onmessage(m) { debug("CHILD got message:", m); |