Turns on jest coverage reports (#793)

This commit is contained in:
Vim 2021-10-13 17:25:02 -07:00 committed by GitHub
commit 6f64acf8cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

3
client/.gitignore vendored
View file

@ -4,4 +4,5 @@ public
.eslintcache
cypress/screenshots/
cypress/videos/
.DS_Store
.DS_Store
coverage

View file

@ -19,4 +19,5 @@ module.exports = {
testURL: `http://localhost`,
setupFiles: [`<rootDir>/loadershim.js`],
setupFilesAfterEnv: ['<rootDir>/setup-test-env.js'],
collectCoverage: true,
};