fix: ignore e2e in automatic jest tests

This commit is contained in:
Ralph Khreish
2025-07-08 09:40:41 +03:00
parent d4208f372a
commit 3ec482fa4a

View File

@@ -48,5 +48,8 @@ export default {
verbose: true,
// Setup file
setupFilesAfterEnv: ['<rootDir>/tests/setup.js']
setupFilesAfterEnv: ['<rootDir>/tests/setup.js'],
// Ignore e2e tests from default Jest runs
testPathIgnorePatterns: ['<rootDir>/tests/e2e/']
};