mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
30 lines
677 B
Lua
30 lines
677 B
Lua
return {
|
|
{
|
|
"nvim-neotest/neotest",
|
|
lazy = false,
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-treesitter/nvim-treesitter",
|
|
"antoinemadec/FixCursorHold.nvim",
|
|
"nvim-neotest/neotest-python",
|
|
"marilari88/neotest-vitest",
|
|
},
|
|
config = function()
|
|
require("neotest").setup({
|
|
adapters = {
|
|
require("neotest-python"),
|
|
require("neotest-vitest")({
|
|
vitestCommand = "vitest",
|
|
}),
|
|
},
|
|
icons = {
|
|
passed = "✅",
|
|
running = "🧪",
|
|
skipped = "🤚",
|
|
unknown = "❓",
|
|
failed = "❌",
|
|
},
|
|
})
|
|
end,
|
|
},
|
|
}
|