diff --git a/CHANGELOG.md b/CHANGELOG.md index 652eb15fbe26..37f1ed9d9649 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ ## 27.0.7 +### Features + +- `[jest-reporters]` Expose the `getSummary` util ([#11695](https://github.com/facebook/jest/pull/11695)). + ### Chore & Maintenance - `[docs]` Correct expects.assertions documentation by adding async/await for asynchronous function. diff --git a/packages/jest-reporters/src/index.ts b/packages/jest-reporters/src/index.ts index afa77eca14e7..9185df007f1b 100644 --- a/packages/jest-reporters/src/index.ts +++ b/packages/jest-reporters/src/index.ts @@ -8,6 +8,7 @@ import getResultHeader from './getResultHeader'; import { formatTestPath, + getSummary, printDisplayName, relativePath, trimAndFormatPath, @@ -35,6 +36,7 @@ export type { export const utils = { formatTestPath, getResultHeader, + getSummary, printDisplayName, relativePath, trimAndFormatPath,