benkuly
09/13/2021, 10:57 AMsam
09/13/2021, 10:58 AMAshish Kumar Joy
10/07/2021, 6:46 AMeventually
but still some within some integration test some action takes much time that even eventually
block fails in those scenario it would be helpful to not fail whole build and just warn and continue.sam
10/07/2021, 11:00 AMsam
10/07/2021, 11:00 AMLeoColman
10/07/2021, 12:54 PMLeoColman
10/07/2021, 12:54 PMrepeat
, retry
, something with timeout
LeoColman
10/07/2021, 12:54 PMJim
10/07/2021, 8:49 PMEventuallyBuilder
has a configurable duration, what’s the difference between kotest re-running and just increasing your duration?LeoColman
10/23/2021, 6:09 PMdave08
10/25/2021, 10:27 AMdave08
10/25/2021, 2:48 PM> Task :api:kotest FAILED
FAILURE: Build failed with an exception.
and at the beginning:
1. ApiTest
is empty... there are failing tests, but in another module...dave08
10/25/2021, 2:48 PMdave08
10/25/2021, 2:49 PMSandymcp
10/25/2021, 3:11 PMwithData
Sandymcp
10/25/2021, 3:12 PM<dependency>
<groupId>io.kotest</groupId>
<artifactId>kotest-runner-junit5-jvm</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.kotest</groupId>
<artifactId>kotest-assertions-core-jvm</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.kotest</groupId>
<artifactId>kotest-framework-datatest</artifactId>
<scope>test</scope>
</dependency>
Sandymcp
10/25/2021, 3:13 PMdave08
11/02/2021, 2:55 PMdave08
11/02/2021, 2:55 PMsam
11/02/2021, 3:05 PMdave08
11/02/2021, 3:19 PMdave08
11/02/2021, 3:19 PMdave08
11/02/2021, 3:19 PMdave08
11/02/2021, 3:20 PMsam
11/02/2021, 3:21 PMdave08
11/02/2021, 3:21 PMlisteners
method to add listeners to a Spec has been deprecated. When adding listeners to specs directly, you should now prefer fun extensions()
rather than fun listeners()
.
in the changelog...sam
11/02/2021, 3:22 PMdave08
11/02/2021, 3:24 PMextension(...)
...dave08
11/07/2021, 2:14 PM▼ Expect that CustomerFound(customerId=111):
Expected :class ports.input.InitializeAccountResponse$NoOrderDetails
Actual :class ports.input.InitializeAccountResponse$CustomerFound
<Click to see difference>
it seems like I'm getting a double output on test failure (in Intellij), one like the previous and the other is what Strikt outputs...Peter
11/15/2021, 3:24 AMx().shouldBeSome() shouldBe "y"
works ✅