Files
home/Projects/kompose/news/apps/backend/tests/integration/helpers/setup.ts

12 lines
284 B
TypeScript
Raw Normal View History

2025-10-10 16:43:21 +02:00
import { config } from "dotenv";
config({ path: ".env.test" });
import resetDb from "./reset-db";
import { beforeEach } from "vitest";
import { execSync } from "child_process";
2025-10-08 10:35:48 +02:00
2025-10-10 16:43:21 +02:00
execSync("prisma migrate deploy", { stdio: "ignore" });
2025-10-08 10:35:48 +02:00
beforeEach(async () => {
2025-10-10 16:43:21 +02:00
// await resetDb()
});