nix-community.nixvim/tests/test-sources/plugins/by-name/neotest/golang.nix
2025-03-04 15:28:43 +01:00

26 lines
488 B
Nix

{
example = {
plugins = {
treesitter.enable = true;
neotest = {
enable = true;
adapters.golang = {
enable = true;
settings = {
dap_go_enabled = true;
testify_enabled = false;
warn_test_name_dupes = true;
warn_test_not_executed = true;
args = [
"-v"
"-race"
"-count=1"
];
};
};
};
};
};
}