Hi, I'm aware of that there is a gradle task `jvmC...
# kontributors
s
Hi, I'm aware of that there is a gradle task
jvmCompilerTest
that can be used to test the
JVM
backend, are there similar tasks for
frontend
and
common IR
?
b
You can find various shortcut tasks in the root build.gradle.kts#L651 like:
Copy code
jvmCompilerTest // includes frontend tests and some other things
jsCompilerTest
nativeCompilerTest
wasmCompilerTest
firCompilerTest // new frontend
🙏 1