From 56b1ecac439c6c896d433081d9c5605929e9c04f Mon Sep 17 00:00:00 2001 From: Leah Schumann Date: Fri, 29 Apr 2022 09:43:02 -0400 Subject: [PATCH] removed the page and components I'm working on from unit tests, test will be completed after page is fully functional --- jest.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index a0bb6bbbe..7f7516934 100644 --- a/jest.config.js +++ b/jest.config.js @@ -22,9 +22,11 @@ module.exports = { "!src/layouts/reveal/**/*.vue", "!src/layouts/estimate/**/*.vue", // REMOVE THESE AFTER WRITING UNIT TESTS - + "!src/layouts/address-lookup/address-lookup.vue", "!src/layouts/address-lookup/customer-questions/customer-questions.vue", "!src/layouts/address-lookup/customer-questions/address-questions/address-questions.vue", + "!src/common-components/dropdown-question/dropdown-question.vue", + "!src/common-components/textbox-question/textbox-question.vue", // END ], //! means exclude from coverage. testMatch: ["**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"],