feat(lang/omnisharp): switch neotest adapter to vstest

Prefer `neotest-vstest` over `neotest-dotnet`. Upstream for
`neotest-dotnet` announced possible archiving and recommends a
vstest-based approach for more robust, framework-agnostic discovery
and execution (incl. future Microsoft.Testing.Platform support).
Refs: Issafalcon/neotest-dotnet#142.
This commit is contained in:
Christoph Schmidpeter 2025-09-28 02:22:11 +02:00
parent b889978151
commit ea3a23ef3e

View file

@ -104,12 +104,12 @@ return {
"nvim-neotest/neotest", "nvim-neotest/neotest",
optional = true, optional = true,
dependencies = { dependencies = {
"Issafalcon/neotest-dotnet", "Nsidorenco/neotest-vstest",
}, },
opts = { opts = {
adapters = { adapters = {
["neotest-dotnet"] = { ["neotest-vstest"] = {
-- Here we can set options for neotest-dotnet -- Here we can set options for neotest-vstest
}, },
}, },
}, },