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

30 lines
698 B
Nix

{
example = {
plugins = {
treesitter.enable = true;
neotest = {
enable = true;
adapters.dotnet = {
enable = true;
settings = {
dap = {
args = {
justMyCode = false;
};
adapter_name = "netcoredbg";
};
custom_attributes = {
xunit = [ "MyCustomFactAttribute" ];
nunit = [ "MyCustomTestAttribute" ];
mstest = [ "MyCustomTestMethodAttribute" ];
};
dotnet_additional_args = [ "--verbosity detailed" ];
discovery_root = "project";
};
};
};
};
};
}