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 ca0e7dd commit 417c8c1Copy full SHA for 417c8c1
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