mirror of
https://github.com/macocianradu/nvim-http.git
synced 2026-03-18 21:00:05 +00:00
11 lines
220 B
Bash
Executable File
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
|