1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00

fix "createClient with url" test with redis 5

This commit is contained in:
leibale
2021-09-23 16:33:47 -04:00
parent 5be5474f18
commit 7d286e7ebe

View File

@@ -85,13 +85,13 @@ describe('Client', () => {
try {
assert.equal(
(await client.clientInfo()).db,
1
await client.ping(),
'PONG'
);
} finally {
await client.disconnect();
}
});
})
});
describe('authentication', () => {