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

remove some commands from cluster, npm update, clean code,

This commit is contained in:
leibale
2021-10-11 17:18:41 -04:00
parent d7026f619e
commit 13d44147db
106 changed files with 1735 additions and 1828 deletions

View File

@@ -1,5 +1,5 @@
import { strict as assert } from 'assert';
import { TestRedisServers, itWithClient, TestRedisClusters, itWithCluster } from '../test-utils';
import { TestRedisServers, itWithClient } from '../test-utils';
import { transformArguments } from './MEMORY_USAGE';
describe('MEMORY USAGE', () => {
@@ -27,11 +27,4 @@ describe('MEMORY USAGE', () => {
null
);
});
itWithCluster(TestRedisClusters.OPEN, 'cluster.memoryUsage', async cluster => {
assert.equal(
await cluster.memoryUsage('key'),
null
);
});
});