mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-28 03:20:08 +02:00
plugins/neotest: init
This commit is contained in:
parent
0ee062ed74
commit
975f1ca526
20 changed files with 916 additions and 2 deletions
30
tests/test-sources/plugins/neotest/dotnet.nix
Normal file
30
tests/test-sources/plugins/neotest/dotnet.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
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";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue