Windows encoding issue for success and failure symbols
Francisc opened this issue · 3 comments
Francisc commented
Francisc commented
Echo!
mlex commented
You can change the symbols with the specReporter.prefixes.[success|failure|skipped]
config option. Just add the following to your karma.conf.js:
specReporter : {
prefixes : {
success: 'O ',
failure: 'X ',
skipped: '_ '
}
}
Please make sure, that you add all three symbols. Otherwise, the reporter will crash with a cannot read ... of undefined
error.
Francisc commented
Should have seen that, thank you.