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
+5
View File
@@ -1,9 +1,14 @@
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 integration tests can use TEST_DATABASE_URL / DATABASE_URL
// when running `pnpm test` from the workspace root.
config({ path: path.resolve(__dirname, "../../.env") });
export default defineConfig({
test: {
environment: "node",