diff --git a/Makefile b/Makefile index a7ee1a3..91c996f 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ update: git submodule update --init --recursive install: clean update - nvim --headless -u tests/testrc.vim -c "lua require('nvim-treesitter.install').install('bash'):wait(300000)" -c "quit" + # nvim --headless -u tests/testrc.vim -c "lua require('nvim-treesitter.install').install('bash'):wait(300000)" -c "quit" clean: rm -rf dependencies diff --git a/lua/neotest-bash/core/file_checker.lua b/lua/neotest-bash/core/file_checker.lua index 24381da..474bdf2 100644 --- a/lua/neotest-bash/core/file_checker.lua +++ b/lua/neotest-bash/core/file_checker.lua @@ -4,6 +4,7 @@ FileChecker = {} ---@param file_path string ---@return boolean function FileChecker.isTestFile(file_path) + local a = 0 -- test files end with test.sh return file_path:match("test.sh$") end