IntelliJ IDEA has a nice feature to view the differences in JUnit tests when assertEquals check fails. It's explained on their website https://www.jetbrains.com/help/idea/viewing-and-exploring-test-results.html and it usually looks like this:
However, sometimes the link to see differences is simply missing and it's not possible to compare anymore. I believe it might be caused by the length of the compared strings, as it works when you compare strings of 3k bytes but does not work with strings of 6k bytes.
Is there a confinguration parameter for this or any workaround to make it work with longer strings?
