20 lines
430 B
Lua
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,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|