mirror of
https://github.com/hknsh/project-knedita.git
synced 2024-11-28 17:41:15 +00:00
7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
import prisma from './src/clients/prisma-client'
|
|
import redis from './src/clients/redis-client'
|
|
|
|
afterAll(async () => {
|
|
redis.disconnect()
|
|
await prisma.$disconnect()
|
|
})
|