how can I run a single test? ```class Class : Stri...
# kotest
e
how can I run a single test?
Copy code
class Class : StringSpec() {
   init {
       "test1" {}
       "test2" {}
   }
}
t
you can prepend
f:
to test you want to run, like
"f:test1"
e
is there a way to run from the gui?
t
I could not find a way, am impatiently waiting for the new version of the plugin to see if this become possible
I mean, if you write
f:
, then run the container class as usual (right click, icon click, whatever) only the `f:`test runs, so it is kinda like doing it from ui