nix-community.nixvim/tests/test-sources/plugins/neotest/minitest.nix

28 lines
490 B
Nix
Raw Normal View History

2024-03-18 14:43:48 +01:00
{
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
'';
};
};
};
};
};
}