fix(db): RDS-CA i poolen (app+migrator delar TLS)

This commit is contained in:
Sven (AAMOS AI)
2026-08-12 05:34:43 +07:00
parent 983f3fb2aa
commit 81927b6cdc
5 changed files with 86 additions and 40 deletions
+17
View File
@@ -0,0 +1,17 @@
import { defineConfig } from "vitest/config";
import { config } from "dotenv";
import path from "node:path";
import { fileURLToPath } from "node:url";
const __dirname = path.dirname(fileURLToPath(import.meta.url));
// Load root .env so worker tests receive DATABASE_URL / TEST_DATABASE_URL
// when running `pnpm test` from the workspace root.
config({ path: path.resolve(__dirname, "../../.env") });
export default defineConfig({
test: {
environment: "node",
globals: false,
},
});