#!/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