Current section

Files

Jump to
mix_test_interactive lib mix_test_interactive command run_tests.ex
Raw

lib/mix_test_interactive/command/run_tests.ex

defmodule MixTestInteractive.Command.RunTests do
@moduledoc """
Run all tests matching the current flags and filter settings.
"""
use MixTestInteractive.Command, command: "", desc: "trigger a test run"
alias MixTestInteractive.Command
@impl Command
def name, do: "Enter"
@impl Command
def run(_args, settings), do: {:ok, settings}
end