Skip to content

Commit

Permalink
Merge pull request #62 from rtjord/layerdev
Browse files Browse the repository at this point in the history
Layerdev
  • Loading branch information
rtjord authored Nov 26, 2024
2 parents 1dc9715 + 1093918 commit c8ee056
Show file tree
Hide file tree
Showing 57 changed files with 10,015 additions and 4,448 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LOG_FILE: test.log
LOG_LEVEL: 2
UTILS_PATH: '../../common/utils'
INTERFACES_PATH: '../../common/interfaces'
SERVICES_PATH: '../../services/rate'

5 changes: 3 additions & 2 deletions backend/jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ export default {
preset: 'ts-jest',
testEnvironment: 'node',
// Add other options here, like test match patterns, coverage, etc.
testMatch: ['**/*.test.ts']
};
testMatch: ['**/*.test.ts'],
setupFiles: ['./jest.setup.ts'], // Ensure the setup file is loaded
};
3 changes: 3 additions & 0 deletions backend/jest.setup.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import * as dotenv from 'dotenv';

dotenv.config(); // Load environment variables from .env
Loading

0 comments on commit c8ee056

Please sign in to comment.