You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-10 11:43:01 +03:00
12 lines
312 B
TypeScript
12 lines
312 B
TypeScript
import { strict as assert } from 'assert';
|
|
import { TestRedisServers, itWithClient } from '../test-utils';
|
|
|
|
describe('KEYS', () => {
|
|
itWithClient(TestRedisServers.OPEN, 'client.keys', async client => {
|
|
assert.deepEqual(
|
|
await client.keys('pattern'),
|
|
[]
|
|
);
|
|
});
|
|
});
|