(
text: string,
{ maxChars = LIVE_RENDER_MAX_CHARS, maxLines = LIVE_RENDER_MAX_LINES } = {}
)
| 126 | } |
| 127 | |
| 128 | export const boundedLiveRenderText = ( |
| 129 | text: string, |
| 130 | { maxChars = LIVE_RENDER_MAX_CHARS, maxLines = LIVE_RENDER_MAX_LINES } = {} |
| 131 | ) => boundedRenderText(text, 'showing live tail', { maxChars, maxLines }) |
| 132 | |
| 133 | const boundedRenderText = ( |
| 134 | text: string, |
no test coverage detected