1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00
Files
Leibale a5a4cb45ea wip
2023-11-09 11:12:41 -05:00

12 lines
283 B
TypeScript

import { strict as assert } from 'node:assert';
import testUtils, { GLOBAL } from '../test-utils';
describe('KEYS', () => {
testUtils.testWithClient('keys', async client => {
assert.deepEqual(
await client.keys('pattern'),
[]
);
}, GLOBAL.SERVERS.OPEN);
});