1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00
Files

12 lines
255 B
TypeScript

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