Skip to content

Commit

Permalink
Disable deno tests for now
Browse files Browse the repository at this point in the history
  • Loading branch information
soywiz committed Aug 19, 2024
1 parent 444da7d commit 53ee621
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ open class DenoTestTask : AbstractTestTask() {
val process = ProcessBuilder(buildList<String> {
add("deno")
add("test")
add("--trace-ops")
add("--unstable-ffi")
add("--unstable-webgpu")
add("-A")
Expand Down
2 changes: 1 addition & 1 deletion korlibs-image/test/korlibs/image/doTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import korlibs.io.async.*
import korlibs.platform.*

fun doTest(block: suspend () -> Unit) {
suspendTest({ !Platform.isAndroid }) {
suspendTest({ !Platform.isAndroid && !Platform.isJsDenoJs }) {
block()
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ class NinePatchVectorTest {
${vector.scaleNinePatch(Size(200, 200)).roundDecimalPlaces(1).toSvgString()}
${vector.toSvgString()}
""".trimIndent()

)
}

Expand Down

0 comments on commit 53ee621

Please sign in to comment.