mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-05 07:27:34 +00:00
7 lines
229 B
Lua
7 lines
229 B
Lua
describe("init", function()
|
|
it("has correct environment for tests", function()
|
|
for _, path in ipairs({ "config", "data", "cache", "state" }) do
|
|
assert(vim.fn.stdpath(path):find(".tests/" .. path))
|
|
end
|
|
end)
|
|
end)
|