dotfiles/.config/nvim/lua/plugins/neotest.lua
Patrick Wadström bc2f2a0e1c
Latest from work
2023-02-11 19:51:08 +01:00

13 lines
285 B
Lua

require('neotest').setup {
adapters = {
require('neotest-jest')({
jestCommand = "pnpm test --",
env = { CI = true },
cwd = function(path)
return vim.fn.getcwd()
end,
}),
require 'neotest-plenary',
}
}