When running tests in IntelliJ, is there a way to get kotlin.junit.assertEquals to output a <Click to see difference> link in the console the same way org.junit.Assert.assertEquals does?
It is extremely convenient to see a difference in text, especially for long text without line breaks:
Vs. Kotlin assert console only output:
Or is the right solution to use Kotlin for tests but with JUnit for assertEquals?

