Tiago
parallelism
kotest.framework.parallelism=10 kotest.framework.spec.concurrent=10 kotest.framework.test.concurrent=10 kotest.framework.isolation.mode=InstancePerLeaf
class SomeTest : ExpectSpec({ expect("something") { ... } expect("another thing") { ... } })
Emil Kantis
init { threads = 20 concurrency = 20 isolationMode = InstancePerTest // tests .... }
A modern programming language that makes developers happier.