22 lines
533 B
Lua
22 lines
533 B
Lua
return {
|
|
"nvim-neotest/neotest",
|
|
lazy = true,
|
|
dependencies = {
|
|
"nvim-neotest/nvim-nio",
|
|
"nvim-lua/plenary.nvim",
|
|
"antoinemadec/FixCursorHold.nvim",
|
|
"nvim-treesitter/nvim-treesitter",
|
|
-- Adapters
|
|
'V13Axel/neotest-pest',
|
|
-- "olimorris/neotest-phpunit",
|
|
},
|
|
config = function()
|
|
require('neotest').setup({
|
|
adapters = {
|
|
require('neotest-pest'),
|
|
-- require('neotest-phpunit'),
|
|
}
|
|
})
|
|
end
|
|
}
|