We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a8290d commit 8d0458bCopy full SHA for 8d0458b
src/test/java/engineering/swat/watch/TortureTests.java
@@ -50,7 +50,9 @@
50
51
import org.apache.logging.log4j.LogManager;
52
import org.apache.logging.log4j.Logger;
53
+import org.awaitility.Awaitility;
54
import org.junit.jupiter.api.AfterEach;
55
+import org.junit.jupiter.api.BeforeAll;
56
import org.junit.jupiter.api.BeforeEach;
57
import org.junit.jupiter.api.RepeatedTest;
58
import org.junit.jupiter.api.Test;
@@ -64,6 +66,11 @@ class TortureTests {
64
66
65
67
private TestDirectory testDir;
68
69
+ @BeforeAll
70
+ static void setupEverything() {
71
+ Awaitility.setDefaultTimeout(TestHelper.LONG_WAIT.getSeconds(), TimeUnit.SECONDS);
72
+ }
73
+
74
@BeforeEach
75
void setup() throws IOException {
76
testDir = new TestDirectory();
0 commit comments