1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00
This commit is contained in:
Leibale
2023-11-09 11:12:41 -05:00
parent 98970fab2e
commit a5a4cb45ea
15 changed files with 222 additions and 261 deletions

View File

@@ -10,13 +10,10 @@ describe('WAIT', () => {
);
});
testUtils.testAll('wait', async client => {
testUtils.testWithClient('client.wait', async client => {
assert.equal(
await client.wait(0, 1),
0
);
}, {
client: GLOBAL.SERVERS.OPEN,
cluster: GLOBAL.CLUSTERS.OPEN
});
}, GLOBAL.SERVERS.OPEN);
});