With the newer form of the `testing` API, how do y...
# gradle
g
With the newer form of the
testing
API, how do you pass
jvmArgs()
? I need to set
--enable-preview
when running tests:
Copy code
testing {
    suites {
        val test by getting(JvmTestSuite::class) {
            useKotlinTest("1.9.0")
        }
    }
}
1