1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-17 22:41:13 +01:00
nixvim/tests/test-sources/plugins/by-name/neotest/minitest.nix
Austin Horstman 53e19bd5e9 tests/neotest: avoid deprecated vim.tbl_flatten
Use plain tables (and vim.iter flatten where needed).
2025-12-17 08:44:16 +00:00

27 lines
473 B
Nix

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