Why use log() instead of console.log()? Is there a good reason? #198
-
Beta Was this translation helpful? Give feedback.
Answered by
PatrickAlphaC
Jun 8, 2022
Replies: 1 comment
-
A bit of user preference, but if you swap out all your |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
PatrickAlphaC
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
log
is silenced when run inside of afixture
console.log
is notA bit of user preference, but if you swap out all your
log
s withconsole.log
and run your tests... you'll get a ton of annoying output you don't want to see.