Browse Source

disable test on Js for now

Simon Krajewski 11 years ago
parent
commit
4534642eb6
1 changed files with 2 additions and 0 deletions
  1. 2 0
      tests/unit/issues/Issue2224.hx

+ 2 - 0
tests/unit/issues/Issue2224.hx

@@ -3,10 +3,12 @@ package unit.issues;
 class Issue2224 extends unit.Test {
 
 	function test() {
+		#if !js
 		eq("opt=null", getEF1());
 		eq("opt=null", getEF2());
 		eq("opt=null", getInt());
 		eq("opt=null", getClass());
+		#end
 	}
 
     static function getEF1( ?opt : Null<haxe.EnumFlags<MyEnum>> ){