From 094acc40e8f3cc08e263d077f1fade1ed9e8c3c8 Mon Sep 17 00:00:00 2001 From: Jan Prochazka Date: Thu, 27 Nov 2025 15:13:28 +0100 Subject: [PATCH] jest reporters --- integration-tests/jest.config.js | 5 +---- integration-tests/package.json | 2 +- packages/datalib/jest.config.js | 5 +---- packages/filterparser/jest.config.js | 5 +---- packages/tools/jest.config.js | 5 +---- 5 files changed, 5 insertions(+), 17 deletions(-) diff --git a/integration-tests/jest.config.js b/integration-tests/jest.config.js index a616d6913..c3c764a9b 100644 --- a/integration-tests/jest.config.js +++ b/integration-tests/jest.config.js @@ -1,7 +1,4 @@ module.exports = { setupFilesAfterEnv: ['/setupTests.js'], - reporters: [ - 'summary', // nice overall summary - 'github-actions', // adds inline annotations in PRs - ], + reporters: ['default', 'github-actions'], }; diff --git a/integration-tests/package.json b/integration-tests/package.json index a8c3e670b..8bf77ab50 100644 --- a/integration-tests/package.json +++ b/integration-tests/package.json @@ -18,7 +18,7 @@ }, "devDependencies": { "cross-env": "^7.0.3", - "jest": "^27.0.1", + "jest": "^28.1.3", "pino-pretty": "^11.2.2", "tmp": "^0.2.3" } diff --git a/packages/datalib/jest.config.js b/packages/datalib/jest.config.js index 4ce2c6ba7..38f6eab3c 100644 --- a/packages/datalib/jest.config.js +++ b/packages/datalib/jest.config.js @@ -2,8 +2,5 @@ module.exports = { preset: 'ts-jest', testEnvironment: 'node', moduleFileExtensions: ['js'], - reporters: [ - 'summary', // nice overall summary - 'github-actions', // adds inline annotations in PRs - ], + reporters: ['default', 'github-actions'], }; diff --git a/packages/filterparser/jest.config.js b/packages/filterparser/jest.config.js index 4ce2c6ba7..38f6eab3c 100644 --- a/packages/filterparser/jest.config.js +++ b/packages/filterparser/jest.config.js @@ -2,8 +2,5 @@ module.exports = { preset: 'ts-jest', testEnvironment: 'node', moduleFileExtensions: ['js'], - reporters: [ - 'summary', // nice overall summary - 'github-actions', // adds inline annotations in PRs - ], + reporters: ['default', 'github-actions'], }; diff --git a/packages/tools/jest.config.js b/packages/tools/jest.config.js index faecf7d0d..38f6eab3c 100644 --- a/packages/tools/jest.config.js +++ b/packages/tools/jest.config.js @@ -2,8 +2,5 @@ module.exports = { preset: 'ts-jest', testEnvironment: 'node', moduleFileExtensions: ['js'], - reporters: [ - 'summary', // nice overall summary - 'github-actions', // adds inline annotations in PRs - ], + reporters: ['default', 'github-actions'], };