mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
57 lines
1.2 KiB
Lua
57 lines
1.2 KiB
Lua
-- Neotest
|
|
-- https://github.com/nvim-neotest/neotest
|
|
return {
|
|
{
|
|
"nvim-neotest/neotest",
|
|
dependencies = {
|
|
"haydenmeade/neotest-jest",
|
|
"marilari88/neotest-vitest",
|
|
},
|
|
keys = {
|
|
{
|
|
"<leader>tl",
|
|
function()
|
|
require("neotest").run.run_last()
|
|
end,
|
|
desc = "Run Last Test",
|
|
},
|
|
{
|
|
"<leader>tL",
|
|
function()
|
|
require("neotest").run.run_last({
|
|
strategy = "dap",
|
|
})
|
|
end,
|
|
desc = "Debug Last Test",
|
|
},
|
|
{
|
|
"<leader>tw",
|
|
"<cmd>lua require('neotest').run.run({ jestCommand = 'jest --watch ' })<cr>",
|
|
desc = "Run Watch",
|
|
},
|
|
},
|
|
opts = function(_, opts)
|
|
table.insert(
|
|
opts.adapters,
|
|
require("neotest-jest")({
|
|
jestCommand = "npm test --",
|
|
jestConfigFile = "custom.jest.config.ts",
|
|
env = {
|
|
CI = true,
|
|
},
|
|
cwd = function()
|
|
return vim.fn.getcwd()
|
|
end,
|
|
})
|
|
)
|
|
table.insert(opts.adapters, require("neotest-vitest"))
|
|
table.insert(
|
|
opts.adapters,
|
|
require("neotest-go")({
|
|
recursive_run = true,
|
|
})
|
|
)
|
|
end,
|
|
},
|
|
}
|