Sam
Sam
As the title says, would be great to allow 4/5 or more columns in the EuiKeyPadMenu
**Which version of Kotest are you using** 5.4.1
**Which version of Kotest are you using** 5.4.1
I often use Kotest's mock server extensions for testing responses to external HTTP services, but the syntax is very Java-y. Consider adding a simple DSL wrapping the Mockserver DSL. Eg,...
See slack thread https://kotlinlang.slack.com/archives/CT0G9SD7Z/p1640365559342000
```kotlin internal class AuctionSniperEndToEndContainerTest : StringSpec({ tags(Docker) listener(openfireTestContainer(Paths.get("../docker-openfire")).perSpec()) ... } object Docker : Tag() object DockerTagExtension : TagExtension { override fun tags(): TagExpression = if (shouldRunDockerTests()) Empty else exclude(Docker) private...
``` enum class PICCPollInterval(val value: Byte) { I250ms(0b00000000), I500ms(0b00001000), I1000ms(0b00010000), I2500ms(0b00011000),; companion object { private val values = values() fun bitMaskToEnum(bitMask: Byte) = values.find { it.value == bitMask and 0b00011000...
https://github.com/kotest/kotest-extensions-arrow/pull/189