Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 687 Bytes

File metadata and controls

25 lines (19 loc) · 687 Bytes

Constant Testing

Monitors elixir projects and runs tests when files are edited.

Run this in your elixir project (or at the root of your umbrella project) and when you update a .exs file it will run the tests from that file. If you update a .ex file it will look for a corresponding .exs file and run those tests

Usage

  1. Clone the repo
git clone https://github.com/danturn/constant_testing.git
  1. Set it up for your Elixir project:
cd constant_testing
./setup_in.sh ~/src/my_lovely_project
  1. Run constant testing in your Elixir project
cd ~/src/my_lovely_project
./constant-testing.sh
  1. Start writing code!