refactor: Update jest.config.json files with testPathIgnorePatterns

The jest.config.json files in the Model, Probe, Common, Copilot, CommonUI, Ingestor, IsolatedVM, TestServer, and CommonServer directories have been updated. The "testPathIgnorePatterns" property has been added to each file, excluding the "node_modules" and "dist" directories from test path matching. This change improves test performance and ensures that unnecessary files are not included in the test coverage.
This commit is contained in:
Simon Larsen
2024-06-11 14:52:55 +01:00
parent c53b14f88f
commit dfb7f2320c
14 changed files with 101 additions and 49 deletions

View File

@@ -1,5 +1,10 @@
{
"preset": "ts-jest",
"preset": "ts-jest",
"testPathIgnorePatterns": [
"node_modules",
"dist"
],
"verbose": true,
"globals": {
"ts-jest": {