packages/client/lib/commands/XGROUP_DESTROY.spec.ts
import { strict as assert } from 'node:assert';
import testUtils, { GLOBAL } from '../test-utils';
import XGROUP_DESTROY from './XGROUP_DESTROY';
import { parseArgs } from './generic-transformers';
describe('XGROUP DESTROY', () => {
it('transformArguments', () => {
assert.deepEqual(
parseArgs(XGROUP_DESTROY, 'key', 'group'),
['XGROUP', 'DESTROY', 'key', 'group']
);
});
testUtils.testAll('xGroupDestroy', async client => {
const [, reply] = await Promise.all([
client.xGroupCreate('key', 'group', '$', {
MKSTREAM: true
}),
client.xGroupDestroy('key', 'group')
]);
assert.equal(reply, 1);
}, {
client: GLOBAL.SERVERS.OPEN,
cluster: GLOBAL.CLUSTERS.OPEN
});
});