slot.nvim/spec/QQdock_spec.lua

8 lines
246 B
Lua

describe('QQdock', function()
it('can be required without toggleterm on path', function()
-- toggleterm is not installed in test env, so we test the module loads
local ok, _ = pcall(require, 'QQdock')
assert.is_true(ok)
end)
end)