nix-community.nixvim/tests/test-sources/plugins/by-name/neotest/golang.nix

27 lines
488 B
Nix
Raw Normal View History

2024-08-08 13:02:54 +01:00
{
2025-03-04 10:09:08 +01:00
example = {
2024-08-08 13:02:54 +01:00
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"
];
};
};
};
};
};
}