1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-10 11:43:01 +03:00
Files
node-redis/lib/commands/DUMP.spec.ts
2021-05-12 19:16:17 -04:00

12 lines
306 B
TypeScript

import { strict as assert } from 'assert';
import { TestRedisServers, itWithClient } from '../test-utils';
describe('DUMP', () => {
itWithClient(TestRedisServers.OPEN, 'client.dump', async client => {
assert.equal(
await client.dump('key'),
null
);
});
});