Skip to content

Commit

Permalink
Added setup for test coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
Ido-Barnea committed Mar 29, 2024
1 parent d4311fa commit ac76f98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.nx
/dist
/node_modules
/test-coverage
3 changes: 2 additions & 1 deletion jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/* eslint-disable */
export default {
displayName: 'chess-but-better',
coverageDirectory: './coverage/chess-but-better',
coverageDirectory: 'test-coverage',
coverageReporters: ['lcov'],
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['<rootDir>/core/**/*.test.ts'],
Expand Down

0 comments on commit ac76f98

Please sign in to comment.