autogits/dev_test_helper.sh

14 lines
230 B
Bash
Raw Normal View History

2025-01-02 13:46:59 +01:00
#!/bin/sh
if [ "x$1" = 'x' ]; then
echo 'param to `go test --run ...` missing'
exit 1
fi
while true; do
go test --run "$1"
2025-02-02 21:07:51 +01:00
inotifywait --exclude 'node_modules' -qqr -e close_write .. && clear
sleep 0.2
2025-01-02 13:46:59 +01:00
done