Packages

Automatically run tests in the iex console when files are saved

Current section

Files

Jump to
tix lib tix.ex
Raw

lib/tix.ex

defmodule Tix do
@moduledoc """
Documentation for Tix.
"""
def start do
Code.compiler_options(ignore_module_conflict: true)
Tix.Supervisor.start_link()
end
def run do
# changed_file |> select_tests() |> execute_tests()
# manually_chosen_test |> execute_tests()
end
end