Skip to content

Commit

Permalink
chore: export LogEntry from jest-console (#11017)
Browse files Browse the repository at this point in the history
  • Loading branch information
yharaskrik committed Jan 19, 2021
1 parent d00695d commit 412954f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -64,6 +64,7 @@
- `[*]` [**BREAKING**] Remove deprecated `mapCoverage` ([#9968](https://github.com/facebook/jest/pull/9968))
- `[jest-config]` [**BREAKING**] Remove `enabledTestsMap` config, use `filter` instead ([#10787](https://github.com/facebook/jest/pull/10787))
- `[jest-console]` [**BREAKING**] Move `root` into `config` and take `GlobalConfig` as mandatory parameter for `getConsoleOutput` ([#10126](https://github.com/facebook/jest/pull/10126))
- `[jest-console]` Export LogEntry ([#11017](https://github.com/facebook/jest/pull/11017))
- `[jest-fake-timers]` Clarify global behavior of `jest.useFakeTimers` and `jest.useRealTimers` ([#10867](https://github.com/facebook/jest/pull/10867))
- `[jest-haste-map]` [**BREAKING**] Migrate to ESM ([#10875](https://github.com/facebook/jest/pull/10875))
- `[jest-haste-map]` [**BREAKING**] Remove support for deprecated option `ignorePattern` as function ([#10348](https://github.com/facebook/jest/pull/10348))
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-console/src/index.ts
Expand Up @@ -9,4 +9,4 @@ export {default as BufferedConsole} from './BufferedConsole';
export {default as CustomConsole} from './CustomConsole';
export {default as NullConsole} from './NullConsole';
export {default as getConsoleOutput} from './getConsoleOutput';
export type {ConsoleBuffer, LogMessage, LogType} from './types';
export type {ConsoleBuffer, LogMessage, LogType, LogEntry} from './types';

0 comments on commit 412954f

Please sign in to comment.