From 3ec482fa4a439d9c879858c151c5ff6ae772c9ea Mon Sep 17 00:00:00 2001 From: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com> Date: Tue, 8 Jul 2025 09:40:41 +0300 Subject: [PATCH] fix: ignore e2e in automatic jest tests --- jest.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index 3a23853b..dda43f3d 100644 --- a/jest.config.js +++ b/jest.config.js @@ -48,5 +48,8 @@ export default { verbose: true, // Setup file - setupFilesAfterEnv: ['/tests/setup.js'] + setupFilesAfterEnv: ['/tests/setup.js'], + + // Ignore e2e tests from default Jest runs + testPathIgnorePatterns: ['/tests/e2e/'] };