You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this may be an IDE oddity, rather than something specific to kotlin-power-assert. I think your IDE (looks like an output from IntelliJ) is showing you the message of the exception the test is failing with and then dumping the stacktrace of the exception which also includes the error message. I suspect if you remove kotlin-power-assert from your build you will observe the same behavior, just without the diagram.
When doing tests in
commonTest
we don't have access tokotlin.assert
, which appears to only be available on JVM and native.So, I tried to use
check
instead, which works, but shows the diagram twice:Also shows twice if the lazyMessage param is not given.
The text was updated successfully, but these errors were encountered: