Running specific tests in Elixir

July 27, 2018

To run the whole test suite, you can stick to

mix test

For tests in a single file:

mix test test/specific_test.exs

For a specific test, append the line number:

mix test test/specific_test.exs:22

Made it this far? Have a go at the game of snake