Current section

Files

Jump to
mix_test_watch lib mix tasks test watch.ex
Raw

lib/mix/tasks/test/watch.ex

defmodule Mix.Tasks.Test.Watch do
use Mix.Task
@moduledoc """
A task for running tests whenever source files change.
"""
@shortdoc "Automatically run tests on file changes"
@preferred_cli_env :test
defdelegate run(args), to: MixTestWatch
end