I know that a single test can be ran by running, in sbt,
testOnly *class -- -n Tag
Is there a way of telling sbt/scalatest to run a single
Just to simplify the example of Tyler.
test:-prefix is not needed.
test:
So according to his example:
In the sbt-console:
sbt
testOnly *LoginServiceSpec
And in the terminal:
sbt "testOnly *LoginServiceSpec"