Plugin to enable simple and fast testing development workflow.
All keybindings run the tests in a new terminal that can be closed pressing 'q' (can be configured) and navigated with VIM keybindings once you press 'k' to enter VIM-Mode.
Currently only supports Test Suites that utilize
'./vendor/bin/phpunit'
lazyvim
return {
'felixele217/hello-test.nvim',
}
lazyvim
return {
'felixele217/hello-test.nvim',
config = function()
require('hello-test').setup({
close_terminal_key = "q" -- specify key that closes terminal
})
end
}
<leader>tt - run test under cursor
<leader>tl - run last test
<leader>tf - run current test file
<leader>ta - run all tests
Feel free to open PRs or Issues! :)