CLOVIS
01/17/2025, 9:07 PMtest()
function, which was used to inject a coroutine context was removed, so you will need to replace:
test("Foo", yourCoroutineContext) {
// your test
}
by:
test("Foo", Context(yourCoroutineContext)) {
// your test
}
This makes the library simpler, as there is a single concept to configure tests, TestConfig
, which users can extend themselves.
Full changelog • Websitedave08
01/19/2025, 12:41 PMdave08
01/19/2025, 1:33 PMCLOVIS
01/19/2025, 5:18 PMI suppose you decided against using java 11 for Prepared @CLOVIS? I'm now working on an Android app and missing it terribly...Still not decided 😕 I think I'm in favor of switching to Java 11, but that probably means I have to downgrade all OpenSavvy projects, and I don't know if that's even possible at this stage
CLOVIS
01/19/2025, 5:19 PMCLOVIS
01/19/2025, 5:20 PMdave08
01/20/2025, 11:59 AMCLOVIS
01/20/2025, 3:58 PMIgnored
in any test's or suite's config to ignore a test (but there's no equivalent for focus)CLOVIS
02/08/2025, 1:35 PMdave08
02/08/2025, 8:40 PMCLOVIS
02/09/2025, 12:08 PM