Closed erikhuizinga closed 6 months ago
I tried upgrading
compose = "1.6.4"
compose-plugin = "1.6.2"
kotlin = "1.9.23"
but no luck.
I tried rm -rf ~/.gradle/nodejs
and running allTests
again but no luck.
It is a Kotlin issue. I filed it here: https://youtrack.jetbrains.com/issue/KT-67468
Thank you Konstantin.
Please check the following ticket on YouTrack for follow-ups to this issue. GitHub issues will be closed in the coming weeks.
Describe the bug
When I run Gradle task
build
, eventually my build fails on theallTests
task.Gradle log:
Affected platforms At least web (K/Wasm) - Canvas based API.
But in my private project I target Android, iOS, JS, Wasm and JVM.
Versions
To Reproduce Steps and/or the code snippet to reproduce the behavior:
kotlin { sourceSets { commonTest.dependencies { implementation(libs.kotlin.test) } } }
class ExampleTest { @Test fun test1() = assertTrue(false) // Note that this test deliberately should fail, just to check that tests run properly }