From a180f1dd4d2a438a5fcf25bc858f1b52092b8712 Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Fri, 7 Jan 2022 16:16:15 +0000 Subject: [PATCH 1/3] chore(jest): remove redundant configuration --- jest.config.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/jest.config.js b/jest.config.js index 093856b08904..d34d5795d5de 100644 --- a/jest.config.js +++ b/jest.config.js @@ -7,6 +7,4 @@ module.exports = { "/private/*/jest.config.js", "/packages/*/jest.config.js", ], - testPathIgnorePatterns: ["/node_modules/", "/clients/client-.*"], - coveragePathIgnorePatterns: ["/node_modules/", "/clients/client-.*", "/__fixtures__/"], }; From aa4e91d487a8bb7051c7acdbdcffa6f6e1a9279f Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Fri, 7 Jan 2022 16:25:01 +0000 Subject: [PATCH 2/3] chore(jest): do not extend from base in jest.config.js The projects configuration will run jest from individual projects --- jest.config.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/jest.config.js b/jest.config.js index d34d5795d5de..a64849c7e677 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,7 +1,4 @@ -const base = require("./jest.config.base.js"); - module.exports = { - ...base, projects: [ "/lib/*/jest.config.js", "/private/*/jest.config.js", From 545bca3cc1bec6390f1633a5e06e9059b60c1b58 Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Fri, 7 Jan 2022 16:38:17 +0000 Subject: [PATCH 3/3] chore(jest): remove redundant configuration from jest.config.integ.js --- jest.config.integ.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/jest.config.integ.js b/jest.config.integ.js index f8bc7cbc50d9..f4b0e7cf267b 100644 --- a/jest.config.integ.js +++ b/jest.config.integ.js @@ -1,8 +1,3 @@ -const base = require("./jest.config.base.js"); - module.exports = { - ...base, projects: ["/clients/*/jest.integ.config.js"], - testPathIgnorePatterns: ["/node_modules/"], - coveragePathIgnorePatterns: ["/node_modules/", "/__fixtures__/"], };