# Script to run the unit-tests for the LSP Vim plugin
-#VIMPRG=${VIMPRG:=$(which vim)}
-export VIMPRG=/home/yega/bin/vim90/bin/vim
-export VIMRUNTIME=/home/yega/bin/vim90/share/vim/vim90
-#export VIMPRG=/home/yega/Documents/vim/vim9/vim/src/vim
-#export VIMRUNTIME=/home/yega/Documents/vim/vim9/vim/runtime
+VIMPRG=${VIMPRG:=$(which vim)}
if [ -z "$VIMPRG" ]; then
echo "ERROR: vim (\$VIMPRG) is not found in PATH"
exit 1
VIM_CMD="$VIMPRG -u NONE -U NONE -i NONE --noplugin -N --not-a-term"
-#TESTS="clangd_tests.vim tsserver_tests.vim gopls_tests.vim not_lspserver_related_tests.vim"
-TESTS="clangd_tests.vim"
-#TESTS="tsserver_tests.vim"
-#TESTS="gopls_tests.vim"
+TESTS="clangd_tests.vim tsserver_tests.vim gopls_tests.vim not_lspserver_related_tests.vim"
for testfile in $TESTS
do