Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
TwIStOy committed Apr 24, 2024
1 parent 982e69a commit 1e41068
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion lua/dotvim/pkgs/coding/plugins/neotest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,11 @@ return {
---@type dotvim.utils
local Utils = require("dotvim.utils")

---@type dotvim.core.action
local Action = require("dotvim.core.action")

---@type dotvim.core.action.ActionOption[]
return {
local actions = {
{
id = "neotest.run-suit",
title = "Run test suit",
Expand Down Expand Up @@ -87,5 +90,11 @@ return {
keys = { "<leader>ts", desc = "neotest-summary" },
},
}

return Action.make_options {
from = "neotest",
category = "Neotest",
actions = actions,
}
end,
}

0 comments on commit 1e41068

Please sign in to comment.