module.exports = { preset: 'ts-jest', testEnvironment: 'node', testMatch: ['**/*.test.ts'], testPathIgnorePatterns: [ // '/node_modules/', // '/dist/', // '/coverage/', '/tests/e2e', // '/lib/', // 'backend/email/emails/test.ts', 'common/src/socials.test.ts', // 'backend/api/src', // 'martin', ], projects: [ '/backend/api', '/backend/shared', '/backend/email', '/common', '/web', ], silent: true, }