| 150 | let testEnv: TestEnv; |
| 151 | |
| 152 | const seedValid = (): TestEnv => ({ |
| 153 | NODE_ENV: "development", |
| 154 | DATABASE_URL: "postgresql://x:y@localhost:5432/db", |
| 155 | JWT_SECRET: "x".repeat(40), |
| 156 | FRONTEND_URL: "http://localhost:5173", |
| 157 | PUBLIC_API_URL: "http://localhost:7330", |
| 158 | ALLOWED_ORIGINS: "", |
| 159 | EMAIL_PROVIDER: "resend", |
| 160 | EMAIL_FROM: "noreply@acme.test", |
| 161 | RESEND_API_KEY: "rk_test", |
| 162 | }); |
| 163 | |
| 164 | const REAL_JWT_SECRET = "x".repeat(40); |
| 165 | const REAL_MFA_KEY = "RGdmRXJVbmlrV3VqWUFwR2VVZkdLUlBmYWxsa2VBQ08="; |