1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00
Files
node-redis/packages/client/lib/commands/ZUNION.spec.ts
2023-04-27 17:43:29 -04:00

49 lines
1.4 KiB
TypeScript

// import { strict as assert } from 'assert';
// import testUtils, { GLOBAL } from '../test-utils';
// import { transformArguments } from './ZUNION';
// describe('ZUNION', () => {
// testUtils.isVersionGreaterThanHook([6, 2]);
// describe('transformArguments', () => {
// it('key (string)', () => {
// assert.deepEqual(
// transformArguments('key'),
// ['ZUNION', '1', 'key']
// );
// });
// it('keys (array)', () => {
// assert.deepEqual(
// transformArguments(['1', '2']),
// ['ZUNION', '2', '1', '2']
// );
// });
// it('with WEIGHTS', () => {
// assert.deepEqual(
// transformArguments('key', {
// WEIGHTS: [1]
// }),
// ['ZUNION', '1', 'key', 'WEIGHTS', '1']
// );
// });
// it('with AGGREGATE', () => {
// assert.deepEqual(
// transformArguments('key', {
// AGGREGATE: 'SUM'
// }),
// ['ZUNION', '1', 'key', 'AGGREGATE', 'SUM']
// );
// });
// });
// testUtils.testWithClient('client.zUnion', async client => {
// assert.deepEqual(
// await client.zUnion('key'),
// []
// );
// }, GLOBAL.SERVERS.OPEN);
// });