From 6f64acf8cd91d097d2eefff62fd5dd55c867d7c8 Mon Sep 17 00:00:00 2001 From: Vim <86254807+vim-usds@users.noreply.github.com> Date: Wed, 13 Oct 2021 17:25:02 -0700 Subject: [PATCH] Turns on jest coverage reports (#793) --- client/.gitignore | 3 ++- client/jest.config.js | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) 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, };