We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01bb143 commit 06bb4afCopy full SHA for 06bb4af
1 file changed
test/common.js
@@ -30,8 +30,10 @@ exports.PORT = +process.env.NODE_COMMON_PORT || 12346;
30
31
if (process.platform === 'win32') {
32
exports.PIPE = '\\\\.\\pipe\\libuv-test';
33
+ exports.opensslCli = path.join(process.execPath, '..', 'openssl-cli.exe');
34
} else {
35
exports.PIPE = exports.tmpDir + '/test.sock';
36
+ exports.opensslCli = path.join(process.execPath, '..', 'openssl-cli');
37
}
38
39
var util = require('util');
@@ -97,6 +99,7 @@ process.on('exit', function() {
97
99
clearInterval,
98
100
typeof clearImmediate == 'undefined' ? null : clearImmediate,
101
console,
102
+ constructor, // Enumerable in V8 3.21.
103
Buffer,
104
process,
105
global].filter(Boolean);
0 commit comments