Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expose getSummary from jest-reporters.utils #11695

Merged
merged 4 commits into from Aug 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -10,6 +10,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.
Expand Down
2 changes: 2 additions & 0 deletions packages/jest-reporters/src/index.ts
Expand Up @@ -8,6 +8,7 @@
import getResultHeader from './getResultHeader';
import {
formatTestPath,
getSummary,
printDisplayName,
relativePath,
trimAndFormatPath,
Expand Down Expand Up @@ -35,6 +36,7 @@ export type {
export const utils = {
formatTestPath,
getResultHeader,
getSummary,
printDisplayName,
relativePath,
trimAndFormatPath,
Expand Down