From 2967cfadceac46fca459ad6ff4e277d5c65e60bc Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sat, 3 Jan 2026 12:35:00 -0600 Subject: [PATCH] Add mix test.watch configuration - Run only stale tests (affected by changes) - Clear screen before running tests for better visibility --- .test-watch.exs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .test-watch.exs diff --git a/.test-watch.exs b/.test-watch.exs new file mode 100644 index 00000000..51b5ddb5 --- /dev/null +++ b/.test-watch.exs @@ -0,0 +1,6 @@ +[ + tasks: [ + "test --stale" # Only run tests affected by changed files + ], + clear: true # Clear screen before running tests +]