z.nvim/tests/specs/example_spec.lua

9 lines
212 B
Lua
Raw Normal View History

2024-09-07 13:27:48 -05:00
describe("Example test", function()
before_each(function() end)
describe("Z", function()
it("should set the correct directory", function()
assert.True(true)
end)
end)
end)