mirror of
https://github.com/ThePrimeagen/harpoon.git
synced 2025-07-14 10:00:29 +00:00
19 lines
380 B
Lua
19 lines
380 B
Lua
local utils = require("harpoon2.test.utils")
|
|
|
|
local eq = assert.are.same
|
|
|
|
describe("harpoon", function()
|
|
|
|
before_each(utils.before_each)
|
|
|
|
it("open the ui without any items in the list", function()
|
|
local harpoon = require("harpoon2")
|
|
harpoon.ui:toggle_quick_menu(harpoon:list())
|
|
|
|
-- no test, just wanted it to run without error'ing
|
|
end)
|
|
|
|
end)
|
|
|
|
|