diff --git a/tests/application/src/ClipboardRTFTest.hx b/tests/application/src/ClipboardRTFTest.hx index 62f27bbcd6..87ca2bafe7 100644 --- a/tests/application/src/ClipboardRTFTest.hx +++ b/tests/application/src/ClipboardRTFTest.hx @@ -18,6 +18,10 @@ class ClipboardRTFTest extends Test #if (flash && !air) @Ignored #end + #if (flash && !haxe4) + // ByteArray type coercion fails with Haxe 3.4.7 + @Ignored + #end public function test_getData(async:Async) { #if air diff --git a/tests/stage/src/StageTest.hx b/tests/stage/src/StageTest.hx index cfeded15b8..1f8c1bd52f 100644 --- a/tests/stage/src/StageTest.hx +++ b/tests/stage/src/StageTest.hx @@ -232,6 +232,9 @@ class StageTest extends Test #end } + #if (flash && !haxe4) + @Ignored + #end #if !integration @Ignored #end @@ -241,9 +244,11 @@ class StageTest extends Test // TODO: Isolate so integration is not needed #if integration + #if (!flash || haxe4) var exists = Lib.current.stage.invalidate; Assert.notNull(exists); #end + #end } }