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-05-10 16:07:29 +03:00
parent 13f1fa9e58
commit 442a554fce
18 changed files with 276 additions and 225 deletions

View File

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