Kirill Nizamov
Kirill Nizamov
I have the following `kotest.properties` file ``` kotest.framework.config.fqn=com.acme.kotest.KotestConfig kotest.framework.classpath.scanning.config.disable=true kotest.framework.classpath.scanning.autoscan.disable=true # not relevent for the issue ``` **Config** scanning still takes place instead of instantiating the one from my file...
Hi, thanks for your great plugin. Given infix function: ```kotlin // some com.my.Assertions.kt file infix fun T.eq(expected: T) = assertEquals(this, expected) fun T.eq(expected: T, msg: String) { println(msg) assertEquals(this, expected)...