Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Input UI 설정, 스토리 북 및 테스트 코드 작성 #8

Merged
merged 14 commits into from
Dec 6, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
env(unitest): test coverage 파일 설정 및 수정
  • Loading branch information
KimKyuHoi committed Dec 6, 2024
commit 8472d18701c27fbe27a3e95671049078e744e1af
2 changes: 1 addition & 1 deletion .github/workflows/unit.test.yml
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ jobs:
corepack prepare yarn@4.5.3 --activate

- name: Install dependencies
run: yarn install --immutable --inline-builds
run: yarn install --immutable

- name: Run tests with coverage
run: yarn test --coverage
11 changes: 11 additions & 0 deletions packages/ui/jest.config.js
Original file line number Diff line number Diff line change
@@ -10,5 +10,16 @@ export default {
transform: {
'^.+\\.(ts|tsx)$': ['ts-jest'],
'\\.css$': 'jest-transform-css'
},
collectCoverage: true,
coverageDirectory: 'coverage',
coverageReporters: ['json-summary', 'text', 'lcov'],
coverageThreshold: {
global: {
branches: 80,
functions: 80,
lines: 80,
statements: 80
}
}
}
Loading