Oleksii Cherniavskyi
Oleksii Cherniavskyi
``` var counter = 1 fun main() { await.during(10, TimeUnit.SECONDS).untilResultAsserted { assertThat( "some message", counter++, greaterThan(2) ) } } ``` Expected result: Code should be executed only once, since asseriton...
**Describe the bug** @BeforeAll and @AfterAll throws exceptions when used in kotlin **To Reproduce** ``` class MyStepDefinitions { companion object { @JvmStatic @BeforeAll fun beforeAll() { println("before all") } @JvmStatic...