From 87c8fdf5acf0d57b244942ab4d454e136a0f0f68 Mon Sep 17 00:00:00 2001 From: Louis Date: Mon, 23 Sep 2024 16:13:45 +0700 Subject: [PATCH] fix: the monorepo jest configs should not cover extensions - they would be moved to mini repositories soon (#3723) --- jest.config.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/jest.config.js b/jest.config.js index a9f0f5938..a911a7f0a 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,10 +1,3 @@ module.exports = { - projects: [ - '/core', - '/web', - '/joi', - '/extensions/inference-nitro-extension', - '/extensions/conversational-extension', - '/extensions/model-extension', - ], + projects: ['/core', '/web', '/joi'], }