nix-community.nixvim/tests/test-sources/plugins/neotest/golang.nix
2024-08-08 14:20:15 +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"
];
};
};
};
};
};
}