add grouping for test listing entries

This commit is contained in:
2025-12-31 21:19:29 +01:00
parent 15bc792449
commit 6ce8530cf7
5 changed files with 330 additions and 50 deletions

View File

@@ -1,2 +1,8 @@
vim.opt.runtimepath:append(vim.loop.cwd())
local cwd = vim.loop.cwd()
vim.opt.runtimepath:append(cwd)
package.path = table.concat({
cwd .. "/lua/?.lua",
cwd .. "/lua/?/init.lua",
package.path,
}, ";")
require("plenary.busted")