Is there something like Spec-level coroutine test ...
# kotest
l
Is there something like Spec-level coroutine test scope? I want to create sequential tests of my repository, which will call the different API methods one after another (taking advantage of
isolationMode = SingleInstance
), but the repository has to be created using a test coroutine scope. I need a single instance of the repository, and I also want the scope to last as long as the test Spec (i.e. get canceled at the end of the last test in Spec).