Skip to content

Commit 42f8ec7

Browse files
author
luigi
committed
test
1 parent c666db7 commit 42f8ec7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

tests/codegen/service-codegen-tests/src/test/kotlin/com/test/ServiceGeneratorTest.kt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ class ServiceGeneratorTest {
8181
val ready = waitForLog(
8282
proc.inputStream.bufferedReader(),
8383
text = "Server started",
84-
timeoutSec = 30,
84+
timeoutSec = 180,
8585
)
86-
assertTrue(ready, "Service did not start within 30 s")
86+
assertTrue(ready, "Service did not start within 180 s")
8787
}
8888

8989
@AfterAll
@@ -118,9 +118,9 @@ class ServiceGeneratorTest {
118118
val ready = waitForLog(
119119
nettyProc.inputStream.bufferedReader(),
120120
text = "Server started",
121-
timeoutSec = 30,
121+
timeoutSec = 180,
122122
)
123-
assertTrue(ready, "Service did not start within 30 s")
123+
assertTrue(ready, "Service did not start within 180 s")
124124
}
125125

126126
@Test
@@ -131,9 +131,9 @@ class ServiceGeneratorTest {
131131
val ready = waitForLog(
132132
cioProc.inputStream.bufferedReader(),
133133
text = "Server started",
134-
timeoutSec = 30,
134+
timeoutSec = 180,
135135
)
136-
assertTrue(ready, "Service did not start within 30 s")
136+
assertTrue(ready, "Service did not start within 180 s")
137137
}
138138

139139
@Test
@@ -144,9 +144,9 @@ class ServiceGeneratorTest {
144144
val ready = waitForLog(
145145
jettyProc.inputStream.bufferedReader(),
146146
text = "Server started",
147-
timeoutSec = 30,
147+
timeoutSec = 180,
148148
)
149-
assertTrue(ready, "Service did not start within 30 s")
149+
assertTrue(ready, "Service did not start within 180 s")
150150
}
151151

152152
@Test

0 commit comments

Comments
 (0)