Skip to content

Instantly share code, notes, and snippets.

@mengwangk
Last active August 24, 2022 21:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mengwangk/673b97ec0a22e483e03f73798af7daa9 to your computer and use it in GitHub Desktop.
Save mengwangk/673b97ec0a22e483e03f73798af7daa9 to your computer and use it in GitHub Desktop.
Neovim For Beginners - Test Debugging and Automation
-- Test
use {
"nvim-neotest/neotest",
opt = true,
wants = {
"plenary.nvim",
"nvim-treesitter",
"FixCursorHold.nvim",
"neotest-python",
"neotest-plenary",
"neotest-go",
"neotest-jest",
"neotest-vim-test",
"neotest-rust",
"vim-test",
"overseer.nvim",
},
requires = {
"vim-test/vim-test",
"nvim-lua/plenary.nvim",
"nvim-treesitter/nvim-treesitter",
"antoinemadec/FixCursorHold.nvim",
"nvim-neotest/neotest-python",
"nvim-neotest/neotest-plenary",
"nvim-neotest/neotest-go",
"haydenmeade/neotest-jest",
"nvim-neotest/neotest-vim-test",
"rouge8/neotest-rust",
},
module = { "neotest", "neotest.async" },
cmd = {
"TestNearest",
"TestFile",
"TestSuite",
"TestLast",
"TestVisit",
},
config = function()
require("config.neotest").setup()
end,
disable = false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment