The logs of my tests in IDEA for tests written in ...
# javascript
c
The logs of my tests in IDEA for tests written in Kotlin where I call
println
are all showed on the same line:
Copy code
println("a")
println("b")
Copy code
// Result:
a b
Copy code
// I expected:
a
b
Is that normal? Is there a parameter somewhere to keep the end of line characters? Running the same test in Kotlin/JVM gives the end of lines I expected.