Sfoglia il codice sorgente

[tests] make display tests much faster

Simon Krajewski 2 anni fa
parent
commit
5d1f274600
2 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 1 1
      tests/display/src/Main.hx
  2. 1 1
      tests/display/src/cases/NotType.hx

+ 1 - 1
tests/display/src/Main.hx

@@ -12,7 +12,7 @@ class Main {
 		report.displaySuccessResults = NeverShowSuccessResults;
 
 		var haxeServer = @:privateAccess DisplayTestContext.haxeServer;
-		haxeServer.setDefaultRequestArguments(["-cp", "src", "-cp", "src-shared", "--no-output", "-lib", "utest"]);
+		haxeServer.setDefaultRequestArguments(["-cp", "src", "-cp", "src-shared", "--no-output"]);
 		DisplayTestContext.runHaxe([]);
 		runner.run();
 		haxeServer.close();

+ 1 - 1
tests/display/src/cases/Type.hx → tests/display/src/cases/NotType.hx

@@ -1,6 +1,6 @@
 package cases;
 
-class Type extends DisplayTestCase {
+class NotType extends DisplayTestCase {
 	/**
 		abstract {-1-}A(Int) {}
 	**/