Skip to content

Commit

Permalink
build: work around kotest/kotest#4647
Browse files Browse the repository at this point in the history
  • Loading branch information
DanySK committed Jan 8, 2025
1 parent 4ae15e9 commit 2d1cfcb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,8 @@ tasks.withType<KotlinCompilationTask<*>>().configureEach {
allWarningsAsErrors = !name.contains("test", ignoreCase = true)
}
}

// Workaround for https://github.com/kotest/kotest/issues/4647
tasks.matching { "wasmJsD8Test" in it.name }.configureEach {
enabled = false
}

0 comments on commit 2d1cfcb

Please sign in to comment.