Hi, since 1.7.0, my tests can't find my dependenci...
# javascript
a
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
Copy code
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
Copy code
./gradlew --stop
./gradlew clean
?
a
this is out of context, what does seskar do?
t
1. Add string union support 2. Check that all props are external interfaces 3. Support value classes as React dependencies Details
r
I had the same issue but in Kotlin/Native. I would just say that 1.7.0 is unstable, don’t use it
a
@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