How to increase the width of the coverage summary report in the terminal? #5270
Answered
by
AriPerkkio
ValentinGurkov
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
AriPerkkio
Feb 22, 2024
Replies: 1 comment 1 reply
-
|
The Maybe this works: {
coverage: {
reporter: [
['text', { maxCols: 200 }],
]
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ValentinGurkov
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

The
textreporter accepts these options: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/276d95e4304b3670eaf6e8e5a7ea9e265a14e338/types/istanbul-reports/index.d.ts#L62-L65Maybe this works: