-
Hi! I'm trying to run tests in my project using neotest (which I managed to get to to work for TS projects), but I keep getting an error that it's not really clear to me were should I start looking. Sorry if this is not a problem with rustaceanvim. The error that I get is really short and without much information: When I do Any help appreciated, and thanks for the plugin, it's extremely useful. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Update: This has been fixed: #384 Hey 👋 It looks like the executable you are using to run tests doesn't support the If that fixes it, then it's probably a bug in rustaceanvim, and the command should probably be sanitised for cargo-nextest. |
Beta Was this translation helpful? Give feedback.
-
Hi. I am trying to use this feature with As you can see, some tests are failing but reported as success when I run So it looks like that only the first test is run ( Another question, is it possible to run all test a la |
Beta Was this translation helpful? Give feedback.
Update: This has been fixed: #384
Hey 👋
It looks like the executable you are using to run tests doesn't support the
--show-output
flag (which is provided by rust-analyzer).rustaceanvim will use cargo-nextest if you have it installed.
You can try disabling that by setting
vim.g.rustaceanvim.tools.enable_nextest = false
.If that fixes it, then it's probably a bug in rustaceanvim, and the command should probably be sanitised for cargo-nextest.