-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update for k/wasm #4009
Update for k/wasm #4009
Conversation
@@ -77,25 +77,25 @@ class DesktopApplicationTest : GradlePluginTestBase() { | |||
@Test | |||
fun testSettingLatestCompiler() = testProject( | |||
TestProjects.customCompiler, defaultTestEnvironment.copy( | |||
kotlinVersion = "1.7.20", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Our compose-core is built using 1.9.21. Its metadata version is 1.9.x
Kotlin 1.7.x used in these tests failed with an error about medata version mismatch.
Therefore, I updated kotlin versions here.
@@ -12,16 +12,16 @@ import org.junit.jupiter.api.Test | |||
|
|||
class KotlinCompatibilityTest : GradlePluginTestBase() { | |||
@Test | |||
fun testKotlinMpp_1_7_10() = testMpp("1.7.10") | |||
fun testKotlinMpp_1_9_10() = testMpp("1.9.10") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
older kotlin/js versions don't support libs build with 1.9.x, therefore an update here was necessary
04269f2
to
7ccc50a
Compare
...ins/compose/src/test/kotlin/org/jetbrains/compose/test/tests/integration/GradlePluginTest.kt
Show resolved
Hide resolved
…est/tests/integration/GradlePluginTest.kt
...ins/compose/src/test/kotlin/org/jetbrains/compose/test/tests/integration/GradlePluginTest.kt
Show resolved
Hide resolved
…est/tests/integration/GradlePluginTest.kt
This a comanion PR to JetBrains/compose-multiplatform-core#914
Resources lib doesn't contain k/wasm target yet. It will be added in a separate PR