generated from nhcarrigan/template
15 lines
539 B
TypeScript
15 lines
539 B
TypeScript
/**
|
|
* @copyright NHCarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
// Set required environment variables for tests
|
|
process.env.JWT_SECRET = 'test-secret';
|
|
process.env.DISCORD_CLIENT_ID = 'test-client-id';
|
|
process.env.DISCORD_CLIENT_SECRET = 'test-client-secret';
|
|
process.env.DOMAIN = 'http://localhost:3000';
|
|
process.env.API_URL = 'http://localhost:3000/api';
|
|
process.env.DATABASE_URL = 'postgresql://test:test@localhost:5432/test';
|
|
process.env.BASE_URL = 'http://localhost:4200';
|
|
process.env.NODE_ENV = 'test'; |