From f8ac4ad2c3dfd2d05d53ca57cf38070d2552cae0 Mon Sep 17 00:00:00 2001 From: Shagen Ogandzhanian Date: Fri, 27 Aug 2021 17:16:41 +0200 Subject: [PATCH] Don't run web-core tests in Firefox (till further investigation) --- web/core/build.gradle.kts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/core/build.gradle.kts b/web/core/build.gradle.kts index 6df6e539..5246c4ac 100644 --- a/web/core/build.gradle.kts +++ b/web/core/build.gradle.kts @@ -1,5 +1,4 @@ plugins { - //id("kotlin-multiplatform") kotlin("multiplatform") id("org.jetbrains.compose") } @@ -13,7 +12,7 @@ kotlin { testLogging.showStandardStreams = true useKarma { useChromeHeadless() - useFirefox() + //useFirefox() } } }