Skip to content

Commit 412954f

Browse files
authored
chore: export LogEntry from jest-console (#11017)
1 parent d00695d commit 412954f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
- `[*]` [**BREAKING**] Remove deprecated `mapCoverage` ([#9968](https://github.com/facebook/jest/pull/9968))
6565
- `[jest-config]` [**BREAKING**] Remove `enabledTestsMap` config, use `filter` instead ([#10787](https://github.com/facebook/jest/pull/10787))
6666
- `[jest-console]` [**BREAKING**] Move `root` into `config` and take `GlobalConfig` as mandatory parameter for `getConsoleOutput` ([#10126](https://github.com/facebook/jest/pull/10126))
67+
- `[jest-console]` Export LogEntry ([#11017](https://github.com/facebook/jest/pull/11017))
6768
- `[jest-fake-timers]` Clarify global behavior of `jest.useFakeTimers` and `jest.useRealTimers` ([#10867](https://github.com/facebook/jest/pull/10867))
6869
- `[jest-haste-map]` [**BREAKING**] Migrate to ESM ([#10875](https://github.com/facebook/jest/pull/10875))
6970
- `[jest-haste-map]` [**BREAKING**] Remove support for deprecated option `ignorePattern` as function ([#10348](https://github.com/facebook/jest/pull/10348))

packages/jest-console/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ export {default as BufferedConsole} from './BufferedConsole';
99
export {default as CustomConsole} from './CustomConsole';
1010
export {default as NullConsole} from './NullConsole';
1111
export {default as getConsoleOutput} from './getConsoleOutput';
12-
export type {ConsoleBuffer, LogMessage, LogType} from './types';
12+
export type {ConsoleBuffer, LogMessage, LogType, LogEntry} from './types';

0 commit comments

Comments
 (0)