Also, funny that ignored tests don't appear in IDE...
# kotest
d
Also, funny that ignored tests don't appear in IDEA U....
@sam What about this? In the IDEA gutters there's a symbol for
xit
tests, but in the run tests panel they don't appear... in JUnit, I think
@Ignore
appeared there, making it possible to see tests that still need to be implemented, but are on pause for the time being.
Not the same as the issue of
it()
... since those, I currently use for planning tests (instead of using comments) that I need to write right away.
s
so you want ignored tests to appear ?
they should already
d
xit is considered like
@Ignored
? Or is it just disabled...?
It didn't appear last time I tried
s
Yeah xit just maps to disabled
it's just shorthand for
test("foo").config(enabled = false) { }
j
It would be cool to get the reason to show up too