README.md

mix test.watch
==============

Automatically run your Elixir project's tests each time you save a file.

## Usage

Add it to your dependencies

```elixir
# mix.exs
def deps do
  [{:mix_test_watch, "~> 0.0.2"}]
end
```

Run the mix task

```
$ mix test.watch
```

Start hacking :)