1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-13 22:28:14 +09:00
hotomoe/packages/backend/test/jest.setup.ts

9 lines
163 B
TypeScript
Raw Normal View History

import { initTestDb, sendEnvResetRequest } from './utils.js';
beforeAll(async () => {
await Promise.all([
initTestDb(false),
sendEnvResetRequest(),
]);
});