Skip to content

Commit d100761

Browse files
authored
Chore/#377-C: 테스트 커버리지 출력 (#378)
1 parent 516000d commit d100761

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# ignore secret keys
22
deploy-scripts/vault-secrets
33

4+
# ignore jest test coverage directories
5+
**/coverage
6+
47
# ignore settings for yarn berry zero install
58
.yarn/*
69
!.yarn/cache

@wabinar/crdt/jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
22
preset: 'ts-jest', // to use typescript
33
verbose: true,
4-
modulePathIgnorePatterns: ['<rootDir>/dist/'],
4+
collectCoverage: true,
55
};

server/jest.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ module.exports = {
1111
'@errors/(.*)': '<rootDir>/errors/$1',
1212
},
1313
modulePathIgnorePatterns: ['<rootDir>/dist/'],
14+
collectCoverage: true,
1415
};

0 commit comments

Comments
 (0)