Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module.exports = {
collectCoverage: true,
testEnvironment: 'node',
setupFiles: [require.resolve('./setupTests.js')],
testPathIgnorePatterns: ['<rootDir>/src/', '<rootDir>/tests/integration/'],
setupFiles: ['<rootDir>/setupTests.js'],
testPathIgnorePatterns: ['<rootDir>/src/'],
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Integration test ignore pattern silently dropped from config

Medium Severity

The testPathIgnorePatterns entry for '<rootDir>/tests/integration/' was removed from jest.config.js and not restored anywhere in the effective configuration. Integration tests that were previously excluded from the default test run will now execute, potentially causing unexpected failures or slowdowns in the regular test suite.

Fix in Cursor Fix in Web

transform: {
'^.+\\.ts$': 'ts-jest',
},
Expand Down
Loading
Loading