Running A Single MiniTest Example
Consider the following MiniTest file:
If we want to run all the tests in this file, we can do so with:
But what if we want to run a specific test? We can target a single MiniTest example with the --name
flag and the name of that example. We can do something like the following:
Last updated