From fc3e784cd3552d69b53bce224dbcc6cc1502fa77 Mon Sep 17 00:00:00 2001 From: Charles Bochet Date: Fri, 4 Oct 2024 23:03:38 +0200 Subject: [PATCH] Fix --- packages/twenty-server/jest-integration.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/twenty-server/jest-integration.config.ts b/packages/twenty-server/jest-integration.config.ts index 10b5cc9e2099..a6a0ff83e2ca 100644 --- a/packages/twenty-server/jest-integration.config.ts +++ b/packages/twenty-server/jest-integration.config.ts @@ -10,7 +10,10 @@ const jestConfig: JestConfigWithTsJest = { rootDir: '.', testEnvironment: 'node', testRegex: '.integration-spec.ts$', - modulePathIgnorePatterns: ['/dist'], + modulePathIgnorePatterns: [ + '/dist', + '/../twenty-emails/dist', + ], globalSetup: '/test/utils/setup-test.ts', globalTeardown: '/test/utils/teardown-test.ts', testTimeout: 15000,