瀏覽代碼

Add some (optional) verbose outputs to unit tests

hughsando 6 年之前
父節點
當前提交
77068e10c7
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      tests/unit/src/unit/TestMain.hx

+ 6 - 0
tests/unit/src/unit/TestMain.hx

@@ -126,6 +126,12 @@ class TestMain {
 			});
 		};
 		#end
+		#if sys
+		if (verbose)
+			runner.onTestStart.add(function(test) {
+				Sys.println(' $test...'); // TODO: need utest success state for this
+			});
+		#end
 		runner.run();
 	}
 }