From ebd4991de8f040ab148dd1407206321e5f817347 Mon Sep 17 00:00:00 2001 From: Jan Prochazka Date: Thu, 27 Nov 2025 15:12:15 +0100 Subject: [PATCH] Revert "jest reporters" This reverts commit d04a8fad4cbc2abb7b37886225d03a4da947c05c. --- integration-tests/jest.config.js | 5 ++--- package.json | 2 -- packages/datalib/jest.config.js | 5 ++--- packages/filterparser/jest.config.js | 5 ++--- packages/tools/jest.config.js | 5 ++--- 5 files changed, 8 insertions(+), 14 deletions(-) diff --git a/integration-tests/jest.config.js b/integration-tests/jest.config.js index a13fd1c42..a616d6913 100644 --- a/integration-tests/jest.config.js +++ b/integration-tests/jest.config.js @@ -1,8 +1,7 @@ module.exports = { setupFilesAfterEnv: ['/setupTests.js'], reporters: [ - 'default', - 'jest-summary-reporter', - 'jest-github-actions-reporter', + 'summary', // nice overall summary + 'github-actions', // adds inline annotations in PRs ], }; diff --git a/package.json b/package.json index 397282ad9..04a4c1055 100644 --- a/package.json +++ b/package.json @@ -84,8 +84,6 @@ }, "devDependencies": { "copyfiles": "^2.2.0", - "jest-github-actions-reporter": "^1.0.3", - "jest-summary-reporter": "^0.0.2", "prettier": "^2.2.1", "workspaces-run": "^1.0.1" } diff --git a/packages/datalib/jest.config.js b/packages/datalib/jest.config.js index defb19a38..4ce2c6ba7 100644 --- a/packages/datalib/jest.config.js +++ b/packages/datalib/jest.config.js @@ -3,8 +3,7 @@ module.exports = { testEnvironment: 'node', moduleFileExtensions: ['js'], reporters: [ - 'default', - 'jest-summary-reporter', - 'jest-github-actions-reporter', + 'summary', // nice overall summary + 'github-actions', // adds inline annotations in PRs ], }; diff --git a/packages/filterparser/jest.config.js b/packages/filterparser/jest.config.js index defb19a38..4ce2c6ba7 100644 --- a/packages/filterparser/jest.config.js +++ b/packages/filterparser/jest.config.js @@ -3,8 +3,7 @@ module.exports = { testEnvironment: 'node', moduleFileExtensions: ['js'], reporters: [ - 'default', - 'jest-summary-reporter', - 'jest-github-actions-reporter', + 'summary', // nice overall summary + 'github-actions', // adds inline annotations in PRs ], }; diff --git a/packages/tools/jest.config.js b/packages/tools/jest.config.js index a56ee9909..faecf7d0d 100644 --- a/packages/tools/jest.config.js +++ b/packages/tools/jest.config.js @@ -3,8 +3,7 @@ module.exports = { testEnvironment: 'node', moduleFileExtensions: ['js'], reporters: [ - 'default', - 'jest-summary-reporter', - 'jest-github-actions-reporter', + 'summary', // nice overall summary + 'github-actions', // adds inline annotations in PRs ], };