From 0d032ea15e3e28bc9c337e024476d420054e2c6f Mon Sep 17 00:00:00 2001 From: Adam Caouette Date: Fri, 14 Jan 2022 16:43:32 -0500 Subject: [PATCH] CSR-254: exclude form-test from jest --- jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/jest.config.js b/jest.config.js index 8b510e95c..7a6fcbc01 100644 --- a/jest.config.js +++ b/jest.config.js @@ -12,6 +12,7 @@ module.exports = { "!src/router/**/*.js", "!src/helpers/unit-test-helper.js", "!src/layouts/component-test/component-test.vue", + "!src/layouts/form-test/form-test.vue", "!src/layouts/address-poc/address-poc.vue" ], //! means exclude from coverage. testMatch: ["**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"],