isn't allowed in test function names. Do you know about any practical naming conventions?
k
kevin.cianfarini
12/13/2023, 3:58 PM
backticks spaces also aren’t allowed in js source sets, so normally I do snake case in tests. I don’t like camel case for tests. This is likely an unpopular opinion.
gratitude thank you 2
j
Javier
12/13/2023, 4:36 PM
hope they fix the problem on JS tho, it is annoying mixing styles based on the project.
Javier
12/13/2023, 4:37 PM
I do the same than the OP, but just without any capital letter except concrete names, replacing spaces if JS is involved
gratitude thank you 1
j
jw
12/13/2023, 4:49 PM
Backticks are allowed in JS. JS does not allow spaces, however
jw
12/13/2023, 4:49 PM
Underscore works everywhere if you need a stand in for a space.