power-assert-js / power-assert

Power Assert in JavaScript. Provides descriptive assertion messages through standard assert interface. No API is the best API.
MIT License
2.81k stars 68 forks source link

Levenstein distance in descriptive assertion message #99

Open yamsellem opened 6 years ago

yamsellem commented 6 years ago

When two strings of characters are very different, the output displayed by power assert is confusing.

May be using a Levenstein distance (or other) to display the first string entirely in red and the second entirely in green can help if they differ too much from each other?

capture d ecran 2017-10-19 a 15 22 50

This output is more confusing than helping, IMO. Thanks.

twada commented 6 years ago

@yamsellem Thanks. However, power-assert does not provide colored diffs so it must be a reporter output of testing framework you are using (Mocha, Jest, AVA, ...). So it's better to report the same issue there.

BTW using Levenstein distance to calculate string similarities is good idea and I'm interested in it.