mirror of
https://github.com/PriceHiller/z.nvim.git
synced 2025-01-02 10:59: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)
|