i tried something like this but it didnt work ``` ...
# gradle
h
i tried something like this but it didnt work
Copy code
tasks {
        named<Test>("unitTest") {
            exclude("**/*cucumber*")
        }
    }
🧵 1
a
tasks.withType<Test>().matching { it.name == "test"}.configureEach { //here }
I think
If name is not important, can remove
matching
.
h
it didnt work
for context
im trying to do this
but in kotlin
a
Possible to share the error?