evanliomain/karma-super-dots-reporter

Suppress failed test error stacktrace from appearing

Closed this issue · 2 comments

I love this reporter!
Is it possible for a reporter to suppress the stack trace from appearing when an error occurs?
I have a separate reporter that pretty-prints my errors at the end once all the tests have run. I don't want the standard output showing up during the time super-dots is running, see example below:

image

Is it possible to have a setting that simply suppresses these default stacktrace printouts?

@whyboris This reporter does not log any stack trace.
It seems to be your separate reporter which log that.
To avoid this behavior, It should be report all errors and stack trace at the end of tests run.

Thank you for the response! I'll try to figure out what is doing it 😀