Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesBochet committed Dec 16, 2024
1 parent b279402 commit d7faeda
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/twenty-front/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"~/*": ["packages/twenty-front/src/*"],
"twenty-ui": ["packages/twenty-ui/src/index.ts"],
"@ui/*": ["packages/twenty-ui/src/*"],
"twenty-shared": ["packages/twenty-shared/dist"],
"twenty-shared": ["packages/twenty-shared/dist"]
}
},
"files": [],
Expand Down
7 changes: 7 additions & 0 deletions packages/twenty-shared/jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ const jestConfig: JestConfigWithTsJest = {
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
extensionsToTreatAsEsm: ['.ts', '.tsx'],
coverageDirectory: './coverage',
coverageThreshold: {
global: {
statements: 100,
lines: 100,
functions: 100,
},
},
};

export default jestConfig;

0 comments on commit d7faeda

Please sign in to comment.