fix(neotest): support neotest adapaters that use setup()
for custom setup
This commit is contained in:
@ -55,7 +55,13 @@ return {
|
|||||||
elseif config ~= false then
|
elseif config ~= false then
|
||||||
local adapter = require(name)
|
local adapter = require(name)
|
||||||
if type(config) == "table" and not vim.tbl_isempty(config) then
|
if type(config) == "table" and not vim.tbl_isempty(config) then
|
||||||
adapter = adapter(config)
|
if adapter.setup then
|
||||||
|
adapter.setup(config)
|
||||||
|
elseif adapter.__call then
|
||||||
|
adapter(config)
|
||||||
|
else
|
||||||
|
error("Adapter " .. name .. " does not support setup")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
adapters[#adapters + 1] = adapter
|
adapters[#adapters + 1] = adapter
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user