Is this the best way to configure test excludes fo...
# gradle
m
Is this the best way to configure test excludes for the test class: with groovy:
Copy code
test {
    exclude "com/mycomp/restdocs/**"
}
with kotlin dsl:
Copy code
tasks {
    "test"(Test::class) {
        exclude("com/mycomp/restdocs/**")
    }
}