If using `InstancePerTest` or `InstancePerLeaf`, d...
# kotest
x
If using
InstancePerTest
or
InstancePerLeaf
, does
autoClose(x)
close x when the spec class is finished (ie: all of the tests in the spec have completed) or when the specific spec instance is finished?
s
after that particular instance is finished
every instance gets their own resource/lifecycle
x
Thanks! That's what I was hoping.