Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
killagu committed Jul 8, 2024
1 parent 61eabeb commit 3acf85b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/HttpClient.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,11 @@ describe('HttpClient.test.ts', () => {
return true;
},
lookup(hostname, options, callback) {
if (process.version.startsWith('v18')) {
if (
process.version.startsWith('v18')
|| process.version.startsWith('v16')
|| process.version.startsWith('v14')
) {
return callback(null, '127.0.0.1', 4);
}
return callback(null, [{
Expand Down

0 comments on commit 3acf85b

Please sign in to comment.