We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1446c1 commit bbb45f6Copy full SHA for bbb45f6
core/src/test/scala/munit/CatsEffectSuiteSpec.scala
@@ -17,12 +17,15 @@
17
package munit
18
19
import cats.effect.{IO, SyncIO}
20
+import scala.annotation.nowarn
21
import scala.concurrent.Future
22
import scala.concurrent.duration._
23
24
class CatsEffectSuiteSpec extends CatsEffectSuite {
25
26
override def munitIOTimeout = 100.millis
27
+
28
+ @nowarn
29
override def munitTimeout = Int.MaxValue.nanos // so only our timeout is in effect
30
31
test("times out".fail) { IO.sleep(1.second) }
0 commit comments