You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When specifying the strategy as parameter to the Neotest command, it gets swallowed.
To Reproduce
Steps to reproduce the behavior:
Run :Neotest run strategy=dap
It executes without applying the strategy
Expected behavior
Strategy parameter works
Additional context
I investigated and the issue is in in the eval_luastring, which is used for the make_params. It refers to the loadstring function which is shown as depracted for me. Anyway, if it tries to parse the command argument strategy=dap, it tries to "load" the string "dap", which is always nil.
What is this supposed to do? I would like to open a PR fixing it, but I'm confused.
The text was updated successfully, but these errors were encountered:
NeoVim Version
v0.10.0-dev-1913041
Describe the bug
When specifying the strategy as parameter to the
Neotest
command, it gets swallowed.To Reproduce
Steps to reproduce the behavior:
:Neotest run strategy=dap
Expected behavior
Strategy parameter works
Additional context
I investigated and the issue is in in the eval_luastring, which is used for the make_params. It refers to the
loadstring
function which is shown as depracted for me. Anyway, if it tries to parse the command argumentstrategy=dap
, it tries to "load" the string"dap"
, which is alwaysnil
.What is this supposed to do? I would like to open a PR fixing it, but I'm confused.
The text was updated successfully, but these errors were encountered: