Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test: fix spawn import in test-pipewrap.js
  • Loading branch information
jkmdev committed Nov 15, 2018
commit 6fc34ff3b960208f5baba48e66828f8cb84a7d7b
2 changes: 1 addition & 1 deletion test/async-hooks/test-pipewrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const assert = require('assert');
const tick = require('../common/tick');
const initHooks = require('./init-hooks');
const { checkInvocations } = require('./hook-checks');
const { spawn } = require('child_process').spawn;
const { spawn } = require('child_process');

if (!common.isMainThread)
common.skip('Worker bootstrapping works differently -> different async IDs');
Expand Down