* chore: refactor server test setup * Close dangling redis connections instead of mocking rate limiter specific modules * Segregate pre and post env test setup * fix: remove mock file
15 lines
365 B
TypeScript
15 lines
365 B
TypeScript
import env from "../env";
|
|
|
|
// test environment variables
|
|
env.SMTP_HOST = "smtp.example.com";
|
|
env.ENVIRONMENT = "test";
|
|
env.GOOGLE_CLIENT_ID = "123";
|
|
env.GOOGLE_CLIENT_SECRET = "123";
|
|
env.SLACK_CLIENT_ID = "123";
|
|
env.SLACK_CLIENT_SECRET = "123";
|
|
env.DEPLOYMENT = undefined;
|
|
|
|
if (process.env.DATABASE_URL_TEST) {
|
|
env.DATABASE_URL = process.env.DATABASE_URL_TEST;
|
|
}
|