nix-community.nixvim/tests/test-sources/plugins/by-name/neotest/minitest.nix
2024-09-09 13:00:29 -05:00

27 lines
490 B
Nix

{
example = {
plugins = {
treesitter.enable = true;
neotest = {
enable = true;
adapters.minitest = {
enable = true;
settings = {
test_cmd.__raw = ''
function()
return vim.tbl_flatten({
"bundle",
"exec",
"rails",
"test",
})
end
'';
};
};
};
};
};
}