Using strikt-gradle 0.24.0
A test like:
expectThat(build) {
task(":jacocoTestReport").isNotNull().isSuccess()
task(":check").isNotNull().isSuccess()
}
Has a result like:
▼ task path:
✓ is not null
✓ outcome is SUCCESS
▼ task path:
✗ is not null
I would expect to see the task path I'm checking.
Using strikt-gradle 0.24.0
A test like:
Has a result like:
I would expect to see the task path I'm checking.