nix-community.nixvim/tests/test-sources/plugins/neotest/minitest.nix
2024-03-19 10:32:35 +01: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
'';
};
};
};
};
};
}