Skip to content
Merged
Changes from all commits
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
test: fix logInTimeout is not function
  • Loading branch information
theanarkh committed Jan 25, 2023
commit 5337952a05ac16ed6e1bd177306592c9b3f5b648
4 changes: 2 additions & 2 deletions test/parallel/test-child-process-exec-timeout-kill.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ const cp = require('child_process');

const {
cleanupStaleProcess,
logInTimeout,
logAfterTime,
kExpiringChildRunTime,
kExpiringParentTimer,
} = require('../common/child_process');

if (process.argv[2] === 'child') {
logInTimeout(kExpiringChildRunTime);
logAfterTime(kExpiringChildRunTime);
return;
}

Expand Down