We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
serviceWorker.js나 index.js나 App.js의 coverage도 평가시 전체 coverage에 들어가는지 궁금합니다
The text was updated successfully, but these errors were encountered:
serviceWorker.js와 index.js는 포함하지 않습니다. App.js는 포함합니다. 실습 슬라이드에 나와있는 것처럼 package.json에 아래의 코드를 추가하시면 됩니다:
"jest": { collectCoverageFrom : [ "src/**/*.{js,jsx}" , "!src/index.js" , "!src/serviceWorker.js" ] }
Sorry, something went wrong.
감사합니다!
저만의 문제인지는 모르겠지만 yarn test --coverage라고 하면 collectCoverageFrom 기능이 잘 작동하지 않는 문제가 있었습니다.
yarn test --coverage
collectCoverageFrom
yarn test --coverage --watchAll=false 라고 하면 제대로 작동하지만 대신에 save할때마다 auto reload 하는 기능이 되지가 않고요.
yarn test --coverage --watchAll=false
yarn test --coverage --watchAll 이라고 하니 auto reload도 되고 coverage도 정상적으로 되는 것을 확인할 수 있었습니다.
yarn test --coverage --watchAll
jestjs/jest#7331 를 보면 동일한 이슈를 겪는 사람들이 많이 있는 것 같은데요. 혹시 비슷하게 어려움 겪으시는 분들을 위해 여기 적어둡니다
No branches or pull requests
serviceWorker.js나 index.js나 App.js의 coverage도 평가시 전체 coverage에 들어가는지 궁금합니다
The text was updated successfully, but these errors were encountered: