|
/**
|
|
* Jest Configuration for Unit Tests
|
|
*/
|
|
|
|
const baseConfig = require('./jest.config');
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
testMatch: ['<rootDir>/tests/unit/**/*.spec.ts'],
|
|
coveragePathIgnorePatterns: [
|
|
'/node_modules/',
|
|
'/infrastructure/',
|
|
'/api/',
|
|
],
|
|
};
|