Hello, is there any way to use coEvery with Strikt...
# strikt
s
Hello, is there any way to use coEvery with Strikt? My intento is to verify if a method is called x times and then do an expectThat for another assertions, and I want to get se see everything that fails
r
You can use parameter capturing and then make assertions about what got captured
s
Thank you, I will do that