Silly question: when running JS tests in the brows...
# javascript
b
Silly question: when running JS tests in the browser, is there a way to log things to the console? I have a bunch of tests that fail with no details - a few
println
would go a long way
a
@Ilya Goncharov [JB] ^^
e
Did you check under the build log too? It might happen that the IDE test tree doesn't show anything, but the full log does.
b
I'm actually running from the command line (but haven't tried with
-i
- let me try to see if there's anything there)
yes! with
-i
my `println`s appear \o/
e
println goes to browser console, and the test report (HTML and XML) should have the console captured too
b
the test report (HTML and XML) should have the console captured too
Yes indeed! - Didn't think to look there. Thanks all! 🙏