Has someone been able to make `kotlin.fuzz` work w...
# multiplatform
d
Has someone been able to make
kotlin.fuzz
work with KMP? Everytime I sync with the IDE I get this warning:
Copy code
'fuzz' and 'regression' task was not able to inherit the 'classpath' and 'testClassesDirs' properties, as it found conflicting configurations
Please, specify them manually in your gradle config using the following syntax:
tasks.withType<FuzzTask>().configureEach {
    classpath = TODO()
    testClassesDirs = TODO()
}
tasks.withType<RegressionTask>().configureEach {
    classpath = TODO()
    testClassesDirs = TODO()
}
t
are you trying to configure it for KMP/JVM target? As kotlin.fuzz only supports JVM.