mirror of
https://github.com/PriceHiller/z.nvim.git
synced 2024-12-30 14:09:14 -06:00
9 lines
212 B
Lua
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)
|