mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-23 22:18:43 -05:00
24 lines
572 B
JavaScript
24 lines
572 B
JavaScript
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: [
|
|
"<rootDir>/backend/api",
|
|
"<rootDir>/backend/shared",
|
|
"<rootDir>/backend/email",
|
|
"<rootDir>/common",
|
|
"<rootDir>/web"
|
|
],
|
|
};
|