Add mix test.watch configuration

- Run only stale tests (affected by changes)
- Clear screen before running tests for better visibility
This commit is contained in:
Graham McIntire 2026-01-03 12:35:00 -06:00
parent 6986a14e13
commit 2967cfadce
No known key found for this signature in database

6
.test-watch.exs Normal file
View file

@ -0,0 +1,6 @@
[
tasks: [
"test --stale" # Only run tests affected by changed files
],
clear: true # Clear screen before running tests
]