You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great to have a way to disable a test, rather than commenting it out. A disabled test would still show up in the output. Let's say I have the following suite:
val tests = Tests {
test("always succeds") {
true ==> true
}
test("always fails") {
true ==> false
}
disabled("fails at the moment") {
true ==> false
}
}
This would yield the following
+ my.package.suite.always succeds 3ms
- my.package.suite.fails at the moment DISABLED
X my.package.suite.always fails 0ms
java.lang.AssertionError: assertion failed: ==> assertion failed: true != false
scala.runtime.Scala3RunTime$.assertFailed(Scala3RunTime.scala:8)
utest.asserts.Asserts$ArrowAssert.$eq$eq$greater(Asserts.scala:90)
my.package.suite$.$init$$$anonfun$7$$anonfun$6(suite.scala:29)
The text was updated successfully, but these errors were encountered:
It would be great to have a way to disable a test, rather than commenting it out. A disabled test would still show up in the output. Let's say I have the following suite:
This would yield the following
The text was updated successfully, but these errors were encountered: