1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-10 11:43:01 +03:00
Files
node-redis/packages/client/lib/commands/CONFIG_REWRITE.spec.ts
Leibale f150e86f95 wip
2023-06-19 18:04:31 -04:00

12 lines
271 B
TypeScript

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