jest reporters

This commit is contained in:
Jan Prochazka
2025-11-27 14:55:37 +01:00
parent cb14bffc5a
commit d04a8fad4c
5 changed files with 14 additions and 8 deletions

View File

@@ -3,7 +3,8 @@ module.exports = {
testEnvironment: 'node',
moduleFileExtensions: ['js'],
reporters: [
'summary', // nice overall summary
'github-actions', // adds inline annotations in PRs
'default',
'jest-summary-reporter',
'jest-github-actions-reporter',
],
};

View File

@@ -3,7 +3,8 @@ module.exports = {
testEnvironment: 'node',
moduleFileExtensions: ['js'],
reporters: [
'summary', // nice overall summary
'github-actions', // adds inline annotations in PRs
'default',
'jest-summary-reporter',
'jest-github-actions-reporter',
],
};

View File

@@ -3,7 +3,8 @@ module.exports = {
testEnvironment: 'node',
moduleFileExtensions: ['js'],
reporters: [
'summary', // nice overall summary
'github-actions', // adds inline annotations in PRs
'default',
'jest-summary-reporter',
'jest-github-actions-reporter',
],
};