Files

22 lines
332 B
TypeScript
Raw Permalink Normal View History

/**
* Test setup and teardown
*/
beforeAll(async () => {
// Setup test environment
process.env.NODE_ENV = 'test';
process.env.JWT_SECRET = 'test-secret-key-for-testing-only';
});
afterAll(async () => {
// Cleanup
});
beforeEach(() => {
// Reset mocks if needed
});
afterEach(() => {
// Cleanup after each test
});