nix-community.nixvim/tests/test-sources/plugins/neotest/dotnet.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
698 B
Nix
Raw Normal View History

2023-11-22 09:38:52 +01:00
{
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";
};
};
};
};
};
}