diff --git a/.github/workflows/Docs.yml b/.github/workflows/Docs.yml index b597e8d..48be52b 100644 --- a/.github/workflows/Docs.yml +++ b/.github/workflows/Docs.yml @@ -32,7 +32,7 @@ jobs: run: ./gradlew :integrationTest:hashRouterTest:browserDistribution - uses: actions/upload-pages-artifact@v3 with: - path: integrationTest/hashRouterTest/build/distributions + path: integrationTest/hashRouterTest/build/dist/js/productionExecutable - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4 diff --git a/build.gradle.kts b/build.gradle.kts index f7c9be4..734ed7d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,4 +1,3 @@ -import org.jetbrains.compose.* import java.util.* import io.gitlab.arturbosch.detekt.* @@ -55,8 +54,7 @@ kotlin { named("jvmTest") { dependencies { - @OptIn(ExperimentalComposeLibrary::class) - implementation(compose.uiTestJUnit4) // there is no non-ui testing + implementation(compose.desktop.uiTestJUnit4) // there is no non-ui testing implementation(compose.desktop.currentOs) // ui-testings needs skiko implementation("org.jetbrains.kotlinx:kotlinx-coroutines-swing:1.7.3") }