Сделал отдельную команду что бы всё на сервер заливать
This commit is contained in:
AidarKC
2026-02-06 16:47:28 +03:00
parent b5706d3ed5
commit a647091a3f
2 changed files with 29 additions and 1 deletions
+6 -1
View File
@@ -22,7 +22,12 @@ public final class TestConfig {
private TestConfig() {}
public static final String WS_URI = "ws://localhost:7070/ws";
public static final String WS_URI_LOCAL = "ws://localhost:7070/ws";
public static final String WS_URI_Server = "wss://shineup.me/ws";
// по умолчанию LOCAL, но можно переопределить: -Dit.wsUri=...
public static final String WS_URI = System.getProperty("it.wsUri", WS_URI_LOCAL);
public static final long TEST_BCH_LIMIT = 50_000_000L;
public static final String TEST_CLIENT_INFO = "it-tests";