UNPKG

@silverwind/ioredis-mock

Version:

This library emulates ioredis by performing all operations in-memory.

13 lines (11 loc) 250 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = emitConnectEvent; function emitConnectEvent(redisMock) { process.nextTick(() => { redisMock.emit('connect'); redisMock.emit('ready'); }); }