fix(core): detect uninitialized lines (#24646)

This commit is contained in:
Jacob Richman
2026-04-03 17:51:29 -07:00
committed by GitHub
parent 65024d4538
commit ec35ebbe57
9 changed files with 52 additions and 9 deletions
@@ -155,6 +155,7 @@ const createMockSerializeTerminalToObjectReturnValue = (
underline: false,
dim: false,
inverse: false,
isUninitialized: false,
fg: '#ffffff',
bg: '#000000',
},
@@ -173,6 +174,7 @@ const createExpectedAnsiOutput = (text: string | string[]): AnsiOutput => {
underline: false,
dim: false,
inverse: false,
isUninitialized: false,
fg: '',
bg: '',
} as AnsiToken,