Skip to content

Instantly share code, notes, and snippets.

@zainab-ali
Last active May 15, 2024 10:25
Show Gist options
  • Save zainab-ali/867fbc095d2ab3ceda498b29bc2b8aba to your computer and use it in GitHub Desktop.
Save zainab-ali/867fbc095d2ab3ceda498b29bc2b8aba to your computer and use it in GitHub Desktop.
//> using javaOpt -Xmx200m
//> using scala "3.4.0"
//> using test.dep com.disneystreaming::weaver-cats::0.8.4
package repro
import cats.effect.IO
import scala.concurrent.duration._
import weaver.SimpleMutableIOSuite
object Repro extends SimpleMutableIOSuite {
test("spinning") {
IO.sleep(20.seconds).as(success)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment