Initial commit: add .gitignore and README

This commit is contained in:
defiQUG
2026-02-09 21:51:45 -08:00
commit 929fe6f6b6
240 changed files with 40977 additions and 0 deletions

21
tests/setup.ts Normal file
View File

@@ -0,0 +1,21 @@
/**
* 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
});