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/CONFIG_RESETSTAT.spec.ts
Leibale f150e86f95 wip
2023-06-19 18:04:31 -04:00

12 lines
281 B
TypeScript

import { strict as assert } from 'assert';
import CONFIG_RESETSTAT from './CONFIG_RESETSTAT';
describe('CONFIG RESETSTAT', () => {
it('transformArguments', () => {
assert.deepEqual(
CONFIG_RESETSTAT.transformArguments(),
['CONFIG', 'RESETSTAT']
);
});
});