(title: string, fn: (legacy: RedisLegacyClientType, client: RedisClientType) => Promise<unknown>)
| 7 | import { once } from 'node:events'; |
| 8 | |
| 9 | function testWithLegacyClient(title: string, fn: (legacy: RedisLegacyClientType, client: RedisClientType) => Promise<unknown>) { |
| 10 | testUtils.testWithClient(title, client => fn(client.legacy(), client), GLOBAL.SERVERS.OPEN); |
| 11 | } |
| 12 | |
| 13 | describe('Legacy Mode', () => { |
| 14 | describe('client.sendCommand', () => { |
no test coverage detected