I understand there is no way to run just a particu...
# kotlintest
d
I understand there is no way to run just a particular test in the spec?
m
Add an f to the beginning of its name should do that.
d
as in in the string?
like
fcalculate salary after tax
instead of
calculate salary after tax
?
👍 1
l
You can also use Kotlintest's Intellij plugin
1
It will allow you to execute a single test too, instead of having to focus it (which also works)
s
You may need to use f: rather than just f
as the name prefix
If f works then that’s a bug as it should be f:
d
it’s actually wasn’t working, and I was also surprised why would it work like that 😛 considering my test description can just start with, now that make sense
will checkout kotlin tests plugin, cheers!
s
yeah unlikely a test starts with f: