Question, should this test work, or did I misunder...
# kotest
t
Question, should this test work, or did I misunderstanding something?
Copy code
test("checkAll should use iteration of provided config"){
    var count = 0
    checkAll(
        config = PropTestConfig(iterations = 10),
        <http://Arb.int|Arb.int>()
    ){  count++  }
    count shouldBe 10
}