diff --git a/docs/Configuration.md b/docs/Configuration.md index 0a071c26c713..4891bb52c66e 100644 --- a/docs/Configuration.md +++ b/docs/Configuration.md @@ -1278,12 +1278,12 @@ export default config; #### GitHub Actions Reporter -If included in the list, the built-in GitHub Actions Reporter will annotate changed files with test failure messages: +If included in the list, the built-in GitHub Actions Reporter will annotate changed files with test failure messages and print logs with github group features for easy navigation. Note that `'default'` should not be used in this case as `'github-actions'` will handle that already, so remember to also include `'summary'`: ```js tab /** @type {import('jest').Config} */ const config = { - reporters: ['default', 'github-actions'], + reporters: ['github-actions', 'summary'], }; module.exports = config; @@ -1293,7 +1293,7 @@ module.exports = config; import type {Config} from 'jest'; const config: Config = { - reporters: ['default', 'github-actions'], + reporters: ['github-actions', 'summary'], }; export default config;