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 0f43aa5 commit 987e4f8Copy full SHA for 987e4f8
test/helper.js
@@ -113,8 +113,11 @@ module.exports = {
113
}
114
var parsers = ['javascript'];
115
var protocols = ['IPv4'];
116
- if (process.platform !== 'win32') {
+ try {
117
+ require('hiredis');
118
parsers.push('hiredis');
119
+ } catch (e) {}
120
+ if (process.platform !== 'win32') {
121
protocols.push('IPv6', '/tmp/redis.sock');
122
123
var options = [{
0 commit comments