From a563df5de37e3e062c6283a404137258682c2591 Mon Sep 17 00:00:00 2001 From: Michael Puehringer Date: Sun, 21 Dec 2025 00:45:16 +0100 Subject: [PATCH] feat: remove *.spec... from jest test regex --- config/jest.config.template.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/jest.config.template.js b/config/jest.config.template.js index 915d723..9f0c214 100644 --- a/config/jest.config.template.js +++ b/config/jest.config.template.js @@ -21,7 +21,7 @@ module.exports = { ], '\\.xml$': 'jest-raw-loader', }, - testRegex: '(.*(test|spec))\\.(tsx?)$', + testRegex: '(.*(test))\\.(tsx?)$', testPathIgnorePatterns: ['playwright'], coveragePathIgnorePatterns: ['playwright'], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],