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 ], };