Nicole Dresselhaus 9ab97a7867 updates
2025-06-04 10:13:16 +02:00

20 lines
430 B
Lua

return {
{ "nvim-neotest/neotest-plenary", "nvim-neotest/neotest-jest" },
{
"nvim-neotest/neotest",
opts = {
adapters = {
"neotest-plenary",
["neotest-jest"] = {
jestCommand = "npm test --",
jestConfigFile = "custom.jest.config.ts",
env = { CI = true },
cwd = function(_)
return vim.fn.getcwd()
end,
},
},
},
},
}