mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
25 lines
496 B
Lua
25 lines
496 B
Lua
return {
|
|
{ "zidhuss/neotest-minitest" },
|
|
{
|
|
"nvim-neotest/neotest",
|
|
dependencies = {
|
|
"zidhuss/neotest-minitest",
|
|
"marilari88/neotest-vitest",
|
|
},
|
|
config = {
|
|
adapters = {
|
|
["neotest-minitest"] = {
|
|
test_cmd = function()
|
|
return vim.tbl_flatten({
|
|
"bundle",
|
|
"exec",
|
|
"rails",
|
|
"test",
|
|
})
|
|
end,
|
|
},
|
|
["neotest-vitest"] = {},
|
|
},
|
|
},
|
|
},
|
|
}
|