deguapp/api/tests/_setupFile.ts
2024-04-30 00:50:34 +02:00

10 lines
174 B
TypeScript

import { connectDB, dropDB, dropCollections } from '../src/utils/test_mongodb';
beforeAll(async () => {
await connectDB();
});
afterAll(async () => {
await dropDB();
});