Add code coverage in Jest in Vue project

Loading

Reading Time: < 1 minute Github: https://github.com/railsstudent/vue-2048 1) Assume Vue project is created by vue-cli 3 and unit testing is enabled 2) Add code coverage in jest configuration in package.json “jest”: { “moduleFileExtensions”: [ “js”, “jsx”, “json”, “vue” ] … // Delete the rest for brevity } 3) Append the following configurations in jest configuration “collectCoverage”: true, “collectCoverageFrom”: [ “src/**/*.vue”, … Read more