Hey thanks for this plugin, looks like it will be awesome.
I have using the vim-test adapter and when running my jest tests, even if I write failing tests they show as passing when I run them with this plugin. If I run them with vim-test they correctly show as failing.
Below is my config
local status_ok, neotest = pcall(require, "neotest")
if not status_ok then
return
end
neotest.setup({
adapters = {
require("neotest-vim-test")({
ignore_file_types = { "python", "vim", "lua" },
}),
},
})
Thanks for the report but I can't seem to replicate the issue with a simple Jest setup. Could you please open an issue in neotest-vim-test and provide an example setup so I can reproduce?
Hey thanks for this plugin, looks like it will be awesome.
I have using the vim-test adapter and when running my jest tests, even if I write failing tests they show as passing when I run them with this plugin. If I run them with vim-test they correctly show as failing.
Below is my config
Here is a screenshot
Thanks