z.nvim/tests/specs/example_spec.lua
2024-09-07 13:32:09 -05:00

9 lines
212 B
Lua

describe("Example test", function()
before_each(function() end)
describe("Z", function()
it("should set the correct directory", function()
assert.True(true)
end)
end)
end)