mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 06:47:33 +08:00
6 lines
202 B
JavaScript
6 lines
202 B
JavaScript
const { createClient } = require('../../services/redis');
|
|
const cache = require('../../services/cache');
|
|
const client = createClient();
|
|
|
|
beforeEach(() => Promise.all([client.flushdb(), cache.init()]));
|