and ```context("a context") { should("a test") ...
# kotest
s
and
Copy code
context("a context") {
   should("a test") {
      1.shouldBeLessThan(2)
      launch { delay(100) }
   }
}