浏览代码

disable test on Js for now

Simon Krajewski 11 年之前
父节点
当前提交
4534642eb6
共有 1 个文件被更改,包括 2 次插入0 次删除
  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>> ){