https://kotlinlang.org logo
Title
a

Ayfri

06/29/2022, 8:43 PM
Hi, since 1.7.0, my tests can't find my dependencies, I'm using only
org.jetbrains.kotlin-wrappers:kotlin-js
and
io.github.turansky.seskar:seskar-core:
, Idea is completely fine with it, but when I run tests, it can't find anything from these, my dependencies are set like this
api("io.github.turansky.seskar:seskar-core:${Versions.seskar}")
api("org.jetbrains.kotlin-wrappers:kotlin-js:${Versions.kotlinWrappers}")
testImplementation(kotlin("test-js", Versions.kotlin))
And
Versions
is an object with
const val
string properties defining the versions and is defined in my
buildSrc
module.
The Problems tool is also reporting like 300 errors from these dependencies but when I go into the file there is no problem
t

turansky

06/29/2022, 9:50 PM
./gradlew --stop
./gradlew clean
?
a

andylamax

06/29/2022, 10:27 PM
this is out of context, what does seskar do?
t

turansky

06/29/2022, 10:39 PM
1. Add string union support 2. Check that all props are external interfaces 3. Support value classes as React dependencies Details
r

ribesg

06/30/2022, 12:25 PM
I had the same issue but in Kotlin/Native. I would just say that 1.7.0 is unstable, don’t use it
a

Ayfri

06/30/2022, 5:29 PM
@turansky Your solution is not working sadly
The weirdest part is that intellij is totally fine in the editor
but not in the Problems tool