21 lines
428 B
Lua
21 lines
428 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,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|