From fb5e38c0b9aacf720cf43b3ea33811ed49dd6506 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Mon, 6 Jul 2020 14:52:55 +0000 Subject: [PATCH] fix: run jest tests from all folders in cjs --- jest.config.base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.base.js b/jest.config.base.js index f87dc686d48c..a296893defdf 100644 --- a/jest.config.base.js +++ b/jest.config.base.js @@ -2,6 +2,6 @@ module.exports = { // remove testMatch once we move to ts-jest testMatch: [ "**/__tests__/**/*.js?(x)", - "**/dist/cjs/?(*.)+(spec|test).js?(x)" + "**/dist/cjs/**/?(*.)+(spec|test).js?(x)" ] };