does 1.3.71 create an `iosTest` task?
# multiplatform
k
does 1.3.71 create an
iosTest
task?
i mean, i technically know the answer is yes, just surprised by, and curious about that 🙂
the interesting bit is that I am doing some manual file coyping/deletion in one of my projects as a part of this task
r
You could probably keep your custom task if you need it, as long as you give it a different name
The built-ins are nice to have though. And it now integrates into the IDE
k
that's definitely nice
now if only it supported resource files
Copy code
tasks.named("iosTest") {
    doFirst {
        copyTestResourceFiles()
    }
    doLast {
        cleanupTestResourceFiles()
    }
}