You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
27 lines
701 B
TypeScript
27 lines
701 B
TypeScript
import { strict as assert } from 'node:assert';
|
|
import testUtils, { GLOBAL } from '../test-utils';
|
|
import XGROUP_SETID from './XGROUP_SETID';
|
|
|
|
describe('XGROUP SETID', () => {
|
|
it('transformArguments', () => {
|
|
assert.deepEqual(
|
|
XGROUP_SETID.transformArguments('key', 'group', '0'),
|
|
['XGROUP', 'SETID', 'key', 'group', '0']
|
|
);
|
|
});
|
|
|
|
testUtils.testAll('xGroupSetId', async client => {
|
|
const [, reply] = await Promise.all([
|
|
client.xGroupCreate('key', 'group', '$', {
|
|
MKSTREAM: true
|
|
}),
|
|
client.xGroupSetId('key', 'group', '0')
|
|
]);
|
|
|
|
assert.equal(reply, 'OK');
|
|
}, {
|
|
client: GLOBAL.SERVERS.OPEN,
|
|
cluster: GLOBAL.CLUSTERS.OPEN
|
|
});
|
|
});
|