You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
fix SSCAN
This commit is contained in:
@@ -40,7 +40,7 @@ describe('SSCAN', () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
testUtils.testWithClient('client.sScan', async client => {
|
testUtils.testAll('sScan', async client => {
|
||||||
assert.deepEqual(
|
assert.deepEqual(
|
||||||
await client.sScan('key', 0),
|
await client.sScan('key', 0),
|
||||||
{
|
{
|
||||||
@@ -48,5 +48,8 @@ describe('SSCAN', () => {
|
|||||||
members: []
|
members: []
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}, GLOBAL.SERVERS.OPEN);
|
}, {
|
||||||
|
client: GLOBAL.SERVERS.OPEN,
|
||||||
|
cluster: GLOBAL.CLUSTERS.OPEN
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user