Skip to content

Commit

Permalink
feat(cs): add neotest integration with neotest-dotnet (#1147)
Browse files Browse the repository at this point in the history
feat(pack/cs): add neotest dotnet
  • Loading branch information
ahmtsen authored Aug 9, 2024
1 parent 7c3ec48 commit 6c55d15
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lua/astrocommunity/pack/cs/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,13 @@ return {
)
end,
},
{
"nvim-neotest/neotest",
optional = true,
dependencies = { "Issafalcon/neotest-dotnet" },
opts = function(_, opts)
if not opts.adapters then opts.adapters = {} end
table.insert(opts.adapters, require "neotest-dotnet"(require("astrocore").plugin_opts "neotest-dotnet"))
end,
},
}

0 comments on commit 6c55d15

Please sign in to comment.