aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/language-web
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2023-04-24 01:19:50 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2023-04-25 01:44:04 +0200
commit1af73e7d7c88f1996ea955a7fc486c9c869648ef (patch)
tree5436a5b6b731b3c3c255c0ffb439d3a4516efffe /subprojects/language-web
parentchore(deps): bump dependencies (diff)
downloadrefinery-1af73e7d7c88f1996ea955a7fc486c9c869648ef.tar.gz
refinery-1af73e7d7c88f1996ea955a7fc486c9c869648ef.tar.zst
refinery-1af73e7d7c88f1996ea955a7fc486c9c869648ef.zip
build: enable parallel Gradle build
Also increases timeout in WebSocket integration test to avoid failures due to increased CPU usage during build.
Diffstat (limited to 'subprojects/language-web')
-rw-r--r--subprojects/language-web/src/test/java/tools/refinery/language/web/tests/WebSocketIntegrationTestClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/subprojects/language-web/src/test/java/tools/refinery/language/web/tests/WebSocketIntegrationTestClient.java b/subprojects/language-web/src/test/java/tools/refinery/language/web/tests/WebSocketIntegrationTestClient.java
index 2ac53ea6..46220777 100644
--- a/subprojects/language-web/src/test/java/tools/refinery/language/web/tests/WebSocketIntegrationTestClient.java
+++ b/subprojects/language-web/src/test/java/tools/refinery/language/web/tests/WebSocketIntegrationTestClient.java
@@ -19,7 +19,7 @@ import java.util.List;
19import static org.junit.jupiter.api.Assertions.fail; 19import static org.junit.jupiter.api.Assertions.fail;
20 20
21public abstract class WebSocketIntegrationTestClient { 21public abstract class WebSocketIntegrationTestClient {
22 private static final long TIMEOUT_MILLIS = Duration.ofSeconds(1).toMillis(); 22 private static final long TIMEOUT_MILLIS = Duration.ofSeconds(10).toMillis();
23 23
24 private boolean finished = false; 24 private boolean finished = false;
25 25