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
NVIM v0.10.2
Build type: RelWithDebInfo
LuaJIT 2.1.1727870382
Run "nvim -V1 -v" for more info
Describe the bug
The command require("neotest").run.run(vim.fn.getcwd()) should run all tests, right?
When I run this command for PHP unit tests, all tests fail, but if I run the command require("neotest").run.run(vim.fn.expand("%")) for each file individually,
then all test succed.
Also, For JavaScript tests using Vitest, each test pass individually, but when
running all tests, actually none of them is run.
I'm using the providers neotest-php and neotest-vitest.
Expected behavior
NeoTest works quite well when running a single file, or a single test in that file,
but it's not working to run all files.
The text was updated successfully, but these errors were encountered:
NeoVim Version
Output of
nvim --version
Describe the bug
The command
require("neotest").run.run(vim.fn.getcwd())
should run all tests, right?When I run this command for PHP unit tests, all tests fail, but if I run the command
require("neotest").run.run(vim.fn.expand("%"))
for each file individually,then all test succed.
Also, For JavaScript tests using Vitest, each test pass individually, but when
running all tests, actually none of them is run.
I'm using the providers
neotest-php
andneotest-vitest
.Expected behavior
NeoTest works quite well when running a single file, or a single test in that file,
but it's not working to run all files.
The text was updated successfully, but these errors were encountered: