Testing on the Scala track

Learn how to test your Scala exercises on Exercism


With sbt installed, the tests can be executed from the command line with:

$ sbt test

You can also use sbt to re-run your tests whenever the source files change:

$ sbt
>~ test

Note that all tests have been disabled except the first one for you to work on. To continue, just remove the pending keyword from the beginning of each test case.

Tests can also be run within the following IDEs