mirror of https://github.com/LazyVim/starter
24 lines
428 B
Lua
24 lines
428 B
Lua
|
return {
|
||
|
{ "zidhuss/neotest-minitest" },
|
||
|
{
|
||
|
"nvim-neotest/neotest",
|
||
|
dependencies = {
|
||
|
"zidhuss/neotest-minitest",
|
||
|
},
|
||
|
config = {
|
||
|
adapters = {
|
||
|
["neotest-minitest"] = {
|
||
|
test_cmd = function()
|
||
|
return vim.tbl_flatten({
|
||
|
"bundle",
|
||
|
"exec",
|
||
|
"rails",
|
||
|
"test",
|
||
|
})
|
||
|
end,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|