Hi, I'm trying to use the new gradle kotlin-dsl bu...
# getting-started
s
Hi, I'm trying to use the new gradle kotlin-dsl but my tests are not being run (although they are built). Is there an example project for this? The one generated with Intellij does not seem to run them. I'm using gradle 4.10.2, kotlin-dsl 1.3 and junit 5
seems my issue was using org.junit.jupiter rather than kotlintest. So it runs the tests if I add
Copy code
val test: Test by tasks
test.useJUnitPlatform()