We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A small cosmetic bug that happens when using reporter: ['html', 'progress']:
reporter: ['html', 'progress']
The clear-text reporter does an initial CRLF on the sysout using this helper method:
clear-text
private writeLine(output?: string) { this.out.write(`${output || ''}\n`); }
That's why it doesn't happen when using clear-text together with progress:
progress
The text was updated successfully, but these errors were encountered:
I think the easiest way to fix this is to add this method to add this method to the ProgressReporter
ProgressReporter
onAllMutantsTested(): void { console.log(); }
Not sure if this would help in all situations though.
Sorry, something went wrong.
Merged into the master brache, will be released later this week.
Kattoor
No branches or pull requests
A small cosmetic bug that happens when using
reporter: ['html', 'progress']
:The
clear-text
reporter does an initial CRLF on the sysout using this helper method:That's why it doesn't happen when using
clear-text
together withprogress
:The text was updated successfully, but these errors were encountered: