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 dd67fdc commit 1223b18Copy full SHA for 1223b18
usvm-ts/src/test/kotlin/org/usvm/samples/operators/Add.kt
@@ -81,6 +81,8 @@ class Add : TsMethodTestRunner() {
81
discoverProperties<TsTestValue, TsTestValue, TsTestValue.TsNumber>(
82
method = method,
83
{ a, b, r -> a is TsTestValue.TsUndefined || b is TsTestValue.TsUndefined && r.number.isNaN() },
84
+ // This condition sometimes fails, in case `bool` + `null`
85
+ // TODO https://github.com/UnitTestBot/usvm/issues/310
86
{ a, b, r ->
87
(a is TsTestValue.TsClass
88
|| b is TsTestValue.TsClass
0 commit comments