Skip to content
This repository was archived by the owner on Jun 9, 2023. It is now read-only.

Commit bbcf678

Browse files
fix: ignore emitted .test.js files when testing (#1078)
1 parent a04ce82 commit bbcf678

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: jest.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ module.exports = {
1010
},
1111
watchPathIgnorePatterns: ['/node_modules'],
1212
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
13-
testMatch: ['/**/*.test.(ts|js|tsx|jsx)'],
13+
testMatch: ['/**/*.test.(ts|tsx)'],
1414
globalSetup: './global-setup.js',
1515
};

0 commit comments

Comments
 (0)