upgrade(docker)

This commit is contained in:
stefan
2025-08-16 15:56:16 +02:00
parent 9c21154199
commit 54feec19d4
7 changed files with 7 additions and 23 deletions
@@ -1,7 +1,5 @@
package at.mocode.client.data.service
import kotlinx.serialization.encodeToString
import kotlinx.serialization.decodeFromString
import kotlinx.serialization.json.Json
import kotlin.test.Test
import kotlin.test.assertEquals
@@ -134,7 +134,7 @@ class PingServiceTest {
@Test
fun `should properly encapsulate HttpClient lifecycle`() {
// Given
var client: HttpClient? = null
val client: HttpClient? = null
// When
val service = PingService()
@@ -2,8 +2,9 @@ package at.mocode.client.ui.viewmodel
import at.mocode.client.data.service.PingResponse
import at.mocode.client.data.service.PingService
import kotlinx.coroutines.*
import kotlinx.coroutines.test.*
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.cancel
import kotlin.test.*
@OptIn(kotlinx.coroutines.ExperimentalCoroutinesApi::class)
-4
View File
@@ -50,10 +50,6 @@ kotlin {
}
}
compose.experimental {
web.application {}
}
// Web-specific optimizations
tasks.named("jsBrowserDevelopmentWebpack") {
outputs.upToDateWhen { false }
@@ -3,7 +3,6 @@ package at.mocode.client.web
import kotlin.test.Test
import kotlin.test.assertNotNull
import kotlin.test.assertTrue
import kotlin.test.assertEquals
class MainTest {