Emil Kantis
Emil Kantis
See reference: https://json-schema.org/understanding-json-schema/reference/array.html#length It should be possible to define a schema like: ```kotlin jsonSchema { array(minItems = 2, maxItems = 100) { string() } } ```
Possibly specify what log level to print them at, and whether to do it on failure / error / all
On top of being able to specify item type, which must hold for _every_ item, it should be possible to specify the _contains_ schema, which must hold true for _at...
The following example fails. Not sure if this is intended? ```kotlin "Wrapped byte array compares" { data class Wobble(val bytes: ByteArray) Wobble(byteArrayOf(1, 2, 3)) shouldBe Wobble(byteArrayOf(1, 2, 3)) // 🔴...
## Expected Behavior The following code only reports an error on the commented line: ```kotlin @Serializable data class EmploymentAgreement( @Contextual val firstEmploymentDate: LocalDate, val employmentLevel: Double, @Contextual val activeFrom: LocalDate,...
## Problem It's frustrating to see surrounding events when you find something of interest in the log. ```sh cw tail my-log-group -b7d | grep ERROR > 2021-10-04T09:20:02,747 ERROR for some...
Also made some minor tweaks to correct attempt counter and duration. Fixes #3863
It would be nice if the method to add tags to the spec was not callable from within tests, since it doesn't seem to do anything at that point? I...
It's not really clear why we need both StringSpec and FreeSpec. I think we could just make StringSpec an alias for FreeSpec and allow using containers in it?