Skip to content

Commit

Permalink
REMOVEME: reorder tests to see if that helps fix CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
olafurpg committed Oct 11, 2021
1 parent 8a123cd commit 5eac47a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/jvm/src/test/scala/munit/TimeoutSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ import scala.concurrent.duration.FiniteDuration

class TimeoutSuite extends munit.FunSuite {
override val munitTimeout: FiniteDuration = Duration(100, "ms")
test("fast") {
Future {
Thread.sleep(1)
}
}
test("slow".fail) {
Future {
Thread.sleep(1000)
Expand All @@ -26,9 +31,4 @@ class TimeoutSuite extends munit.FunSuite {
}
}
}
test("fast") {
Future {
Thread.sleep(1)
}
}
}

0 comments on commit 5eac47a

Please sign in to comment.