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.
2 parents ca0e7dd + 417c8c1 commit 83a1be2Copy full SHA for 83a1be2
test/auth.spec.js
@@ -42,15 +42,14 @@ describe("client authentication", function () {
42
});
43
44
if (ip === 'IPv4') {
45
- it('allows auth to be provided as config option for client', function (done) {
+ it('allows auth to be provided as part of redis url', function (done) {
46
client = redis.createClient('redis://foo:' + auth + '@' + config.HOST[ip] + ':' + config.PORT);
47
client.on("ready", function () {
48
- return done();
49
- });
+ return done() });
50
51
}
52
53
- it('allows auth to be provided as part of redis url', function (done) {
+ it('allows auth to be provided as config option for client', function (done) {
54
var args = config.configureClient(parser, ip, {
55
auth_pass: auth
56
0 commit comments