From ac833ef26598cedcb123384172b957191dfa7e94 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Wed, 4 Feb 2026 23:34:20 -0600 Subject: [PATCH] feat(tests): enhance Vitest configuration with additional environment variables and updated setup path - Updated the setup file path for global mocks in the Vitest configuration to improve clarity. - Added environment variables for GitHub and Google credentials to the test environment, facilitating integration testing. --- apps/dokploy/__test__/vitest.config.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/dokploy/__test__/vitest.config.ts b/apps/dokploy/__test__/vitest.config.ts index beda096e5..6ad4313a2 100644 --- a/apps/dokploy/__test__/vitest.config.ts +++ b/apps/dokploy/__test__/vitest.config.ts @@ -7,11 +7,16 @@ export default defineConfig({ include: ["__test__/**/*.test.ts"], // Incluir solo los archivos de test en el directorio __test__ exclude: ["**/node_modules/**", "**/dist/**", "**/.docker/**"], pool: "forks", - setupFiles: ["./__test__/setup/mock-db.ts"], + // Se ejecuta antes de todos los tests y aplica mocks globales (db, postgres, etc.) + setupFiles: ["./setup/mock-db.ts"], }, define: { "process.env": { NODE: "test", + GITHUB_CLIENT_ID: "test", + GITHUB_CLIENT_SECRET: "test", + GOOGLE_CLIENT_ID: "test", + GOOGLE_CLIENT_SECRET: "test", }, }, plugins: [