kotest
kotest copied to clipboard
Wrong tests results tree
Kotest 6.0.0.M3
class Test : FreeSpec({
"root" - {
(1..3).forEach { i ->
"$i" - {
(1..3).forEach { j ->
"$i $j" {
}
}
}
}
}
})
Expected result:
root
1
1 1
1 2
1 3
2
2 1
2 2
2 3
3
3 1
3 2
3 3
Actual result:
5.9.1 produces
Is this using gradle or running using the play button in the editor ?
This is fixed in master, so will go out with the RC candidate.