btw i also use kotlin-power-assert for tests now w...
# failgood
c
btw i also use kotlin-power-assert for tests now with a combination of `assertNotNull()`for navigation and
assert
for the actual assertion like this:
Copy code
val failedContext = assertNotNull(suiteResult.failedRootContexts.singleOrNull())
assert(failedContext.context.name == "root")
the only thing thats missing is soft asserts