GustavEikaas / easy-dotnet.nvim

Neovim plugin written in Lua for working with .Net projects in Neovim. Makes it easier to run/test/build/debug projects. Supports both F# and C#
MIT License
53 stars 3 forks source link

bug(testrunner):🐛 `<leader>R` runs all tests even when filter for failed tests is active #58

Open GustavEikaas opened 3 weeks ago

GustavEikaas commented 3 weeks ago

<leader>R runs all tests even when filter for failed tests is active

Find way to use dotnet filter to scope down to the failed tests

GustavEikaas commented 2 weeks ago

Research indicates that targeting a list of individual tests is really complicated due to the filtering command in dotnet test --filter being so sensitive and requiring, escaping, stripping etc to ensure the correct tests are run.

GustavEikaas commented 1 week ago

Using TranslationLayer might be a viable solution for this issue