|
@@ -1,5 +1,6 @@
|
|
|
package cases;
|
|
|
|
|
|
+import haxe.Json;
|
|
|
import haxe.display.Diagnostic;
|
|
|
import haxe.display.Display;
|
|
|
import haxe.display.FsPath;
|
|
@@ -521,6 +522,12 @@ class ServerTests extends TestCase {
|
|
|
});
|
|
|
}
|
|
|
|
|
|
+ function test8671() {
|
|
|
+ runHaxeJson(["--times"], ServerMethods.Contexts, null);
|
|
|
+ var res = Json.parse(lastResult.stderr);
|
|
|
+ Assert.equals(0, res.result.timers.time);
|
|
|
+ }
|
|
|
+
|
|
|
function test10986() {
|
|
|
vfs.putContent("Main.hx", getTemplate("issues/Issue10986/Main.hx"));
|
|
|
vfs.putContent("haxe/ds/Vector.hx", getTemplate("issues/Issue10986/Vector.hx"));
|