```tasks.withType<Test> { useJUnitPlatform() }``` In multimodule app this code :arrow_up: ...
a
Copy code
tasks.withType<Test> {
    useJUnitPlatform()
}
In multimodule app this code ⬆️ should be in each module or can be in Project level build gradle file?
s
Project level works
put it in the allprojects { } block
a
awesome, thanks