Transforms an Arrow Either to a KResult
import arrow.core.Eitherimport io.kotest.matchers.shouldBeimport io.kresult.integration.arrow.toKResultfun test() { Either.Right("test") .toKResult() .isSuccess() shouldBe true}