As per kotest docs: https://github.com/kotest/kotest/blob/master/doc/nondeterministic.md
You can tell
eventually
to ignore specific exceptions and any others will immediately fail the test.
I want to pass multiple exceptions to eventually that I know would be thrown by my block so that I can explicitly skip them.
Right now I only see a way to pass one, how do I pass more than one exception to eventually
to skip it in case the block throws those exceptions?