If we have the following in our sourceSet ``` sou...
# multiplatform
g
If we have the following in our sourceSet
Copy code
sourceSets {
		jvmMain {
			kotlin.srcDirs "src/main/kotlin"
			resources.srcDir "src/main/resources"
			
			...
		}
where we are changing the dirs for the jvm target, how can we do the same for the tests folder? I tried some variations like this one:
Copy code
kotlinTest.srcDirs "src/main/test"
testResources.srcDir "src/test/resources"
but it didn’t work. Is there a doc or a place where I can find the available options?
d
Just like
jvmMain
, do
jvmTest { kotlin.srcDirs .... }
.
g
Thanks a lot ;)