mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-02 13:24:28 +02:00
plugins/neotest: move to by-name
This commit is contained in:
parent
0f83298f2c
commit
9d323f3ec7
26 changed files with 0 additions and 2 deletions
35
tests/test-sources/plugins/by-name/neotest/phpunit.nix
Normal file
35
tests/test-sources/plugins/by-name/neotest/phpunit.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
example = {
|
||||
plugins = {
|
||||
treesitter.enable = true;
|
||||
neotest = {
|
||||
enable = true;
|
||||
|
||||
adapters.phpunit = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
phpunit_cmd.__raw = ''
|
||||
function()
|
||||
return "vendor/bin/phpunit"
|
||||
end
|
||||
'';
|
||||
root_files = [
|
||||
"composer.json"
|
||||
"phpunit.xml"
|
||||
".gitignore"
|
||||
];
|
||||
filter_dirs = [
|
||||
".git"
|
||||
"node_modules"
|
||||
];
|
||||
env = {
|
||||
XDEBUG_CONFIG = "idekey=neotest";
|
||||
};
|
||||
dap = null;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue