-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to specify reporters order and owerwrite coverage/notify reporters #4052
Comments
I was thinking about writing a reporter that is intended to add grouping markings around the output of an unmodified At least I'd suggest a sentence in the doc for My use case is quite simple. I just wanted to add plain bumper text between the sections so that The desired output would look like this:
I can only get this.
|
This issue is stale because it has been open for 1 year with no activity. Remove stale label or comment or this will be closed in 30 days. |
This issue was closed because it has been stalled for 7 days with no activity. Please open a new issue if the issue is still relevant, linking to this one. |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Custom reporter experience is not great right now and it's pretty hard to customize.
Right now even if we pass this to config:
the order will be:
and that makes it hard to customize reporters that interact with coverage data. (coverage data is never available in custom reporters, because
CoverageReporter
is always last in the queue).ideally we need to be able to have a full control over reporters queue.
e.g.
should not have any reporters at all (no coverage, no stdout)
should run repotrens in the specified order
and
allows to overwrite and customize specific reporters
The text was updated successfully, but these errors were encountered: