Open suneiang opened 2 months ago
I am seeing the same issue when attempting to use this plugin, any assistance would be appreciated.
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 () {
}