Skip to content
Merged
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
Next Next commit
fixup! fix error when node is compiled without OpenSSL
  • Loading branch information
aduh95 committed Feb 12, 2022
commit 643bd8a545c55c4481c5bc68ee7141f833f57db7
2 changes: 1 addition & 1 deletion test/common/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ if (global.fetch) {
global.Headers,
);
}
if (global.crypto) {
if (hasCrypto && global.crypto) {
knownGlobals.push(global.crypto);
}

Expand Down