why does `jsTest` run `main()`? none of the other ...
# javascript
e
why does
jsTest
run
main()
? none of the other targets have this behavior, but with
Copy code
// commonMain
fun main() {
    println("Hello, world!")
}
running
./gradlew allTests
prints out
Copy code
> Task :jsNodeTest
Hello, world!
sample project attached