packages/client/lib/commands/LCS_LEN.spec.ts
import { strict as assert } from 'node:assert';
import testUtils, { GLOBAL } from '../test-utils';
import LCS_LEN from './LCS_LEN';
import { parseArgs } from './generic-transformers';
describe('LCS_LEN', () => {
testUtils.isVersionGreaterThanHook([7]);
it('transformArguments', () => {
assert.deepEqual(
parseArgs(LCS_LEN, '1', '2'),
['LCS', '1', '2', 'LEN']
);
});
testUtils.testAll('lcsLen', async client => {
assert.equal(
await client.lcsLen('{tag}1', '{tag}2'),
0
);
}, {
client: GLOBAL.SERVERS.OPEN,
cluster: GLOBAL.CLUSTERS.OPEN
});
});