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
Please help with this when i run it returned this error log
...l/share/nvim/lazy/neotest-pest/lua/neotest-pest/init.lua:169: No test output file found! Should have been at: storage/app/pest-20240907-230730
Here is my neotest config:
return {
"nvim-neotest/neotest",
optional = true,
dependencies = {
"nvim-neotest/nvim-nio",
"nvim-lua/plenary.nvim",
"antoinemadec/FixCursorHold.nvim",
"nvim-treesitter/nvim-treesitter",
"marilari88/neotest-vitest",
"fredrikaverpil/neotest-golang",
"theutz/neotest-pest",
"olimorris/neotest-phpunit",
},
opts = {
adapters = {
["neotest-pest"] = {},
["neotest-phpunit"] = {},
["neotest-vitest"] = {},
["neotest-golang"] = {
-- FIX: doesn't work when in subdirectory of repo (ex: "sesh/v2/namer")
args = { "-coverprofile=" .. vim.fn.getcwd() .. "/coverage.out" },
},
},
},
this is what my test run look like
test('example test', function () {
---
---
}
The text was updated successfully, but these errors were encountered:
suneiang
changed the title
No test output file found1
No test output file found!
Sep 7, 2024
That error log almost always means the command to perform the tests didn't actually run successfully, exiting with a non-zero code. Are you able to run your tests separately?
And, are you trying to run via sail or system PHP?
Please help with this when i run it returned this error log
...l/share/nvim/lazy/neotest-pest/lua/neotest-pest/init.lua:169: No test output file found! Should have been at: storage/app/pest-20240907-230730
Here is my neotest config:
return {
"nvim-neotest/neotest",
optional = true,
dependencies = {
"nvim-neotest/nvim-nio",
"nvim-lua/plenary.nvim",
"antoinemadec/FixCursorHold.nvim",
"nvim-treesitter/nvim-treesitter",
"marilari88/neotest-vitest",
"fredrikaverpil/neotest-golang",
"theutz/neotest-pest",
"olimorris/neotest-phpunit",
},
opts = {
adapters = {
["neotest-pest"] = {},
["neotest-phpunit"] = {},
["neotest-vitest"] = {},
["neotest-golang"] = {
-- FIX: doesn't work when in subdirectory of repo (ex: "sesh/v2/namer")
args = { "-coverprofile=" .. vim.fn.getcwd() .. "/coverage.out" },
},
},
},
this is what my test run look like
test('example test', function () {
---
---
}
The text was updated successfully, but these errors were encountered: