diff --git a/client/.gitignore b/client/.gitignore index 8fcc9fab..faf790bb 100644 --- a/client/.gitignore +++ b/client/.gitignore @@ -4,4 +4,5 @@ public .eslintcache cypress/screenshots/ cypress/videos/ -.DS_Store \ No newline at end of file +.DS_Store +coverage \ No newline at end of file diff --git a/client/jest.config.js b/client/jest.config.js index f079b621..ca914d25 100644 --- a/client/jest.config.js +++ b/client/jest.config.js @@ -19,4 +19,5 @@ module.exports = { testURL: `http://localhost`, setupFiles: [`/loadershim.js`], setupFilesAfterEnv: ['/setup-test-env.js'], + collectCoverage: true, };