From 9a80e79778a1f19c06b4fc838e786d6242256153 Mon Sep 17 00:00:00 2001
From: ansgarz <ansgar.zwick@meissa.de>
Date: Fri, 24 Jan 2025 11:49:35 +0100
Subject: [PATCH] installShadowCljs use default test container

---
 .../provs/desktop/infrastructure/ClojureScriptKtTest.kt        | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/test/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/ClojureScriptKtTest.kt b/src/test/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/ClojureScriptKtTest.kt
index ba26a98..c97b063 100644
--- a/src/test/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/ClojureScriptKtTest.kt
+++ b/src/test/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/ClojureScriptKtTest.kt
@@ -1,6 +1,5 @@
 package org.domaindrivenarchitecture.provs.desktop.infrastructure
 
-import org.domaindrivenarchitecture.provs.framework.core.processors.ContainerStartMode
 import org.domaindrivenarchitecture.provs.test.defaultTestContainer
 import org.domaindrivenarchitecture.provs.test.tags.ContainerTest
 import org.junit.jupiter.api.Assertions.assertTrue
@@ -10,7 +9,7 @@ internal class ClojureScriptKtTest {
     @ContainerTest
     fun installShadowCljs() {
         // given
-        val prov = defaultTestContainer(ContainerStartMode.CREATE_NEW_KILL_EXISTING)
+        val prov = defaultTestContainer()
 
         // when
         val res = prov.installShadowCljs()