Files
nvim-http/run_tests.sh
Radu Macocian (admac) 7f7b38e394 Start manual rewrite
2026-03-17 10:13:24 +01:00

11 lines
220 B
Bash
Executable File

#!/bin/bash
# Run Neovim plugin tests
cd "$(dirname "$0")"
for test_file in tests/test_*.lua; do
echo "Running $test_file..."
nvim --headless --noplugin -u NONE -c "set rtp+=." -l "$test_file"
echo ""
done