This commit is contained in:
Nicole Dresselhaus
2025-06-04 10:13:16 +02:00
parent 8e7058f4b2
commit 9ab97a7867
6 changed files with 166 additions and 11 deletions

View File

@ -0,0 +1,19 @@
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,
},
},
},
},
}