Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions lua/neotest-bash/core/file_checker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading