mirror of https://github.com/folke/lazy.nvim.git
test: fix init test
This commit is contained in:
parent
90e14d1585
commit
707e2e923b
|
@ -1,7 +1,11 @@
|
||||||
|
---@module 'luassert'
|
||||||
|
local Util = require("lazy.core.util")
|
||||||
|
|
||||||
describe("init", function()
|
describe("init", function()
|
||||||
it("has correct environment for tests", function()
|
it("has correct environment for tests", function()
|
||||||
for _, path in ipairs({ "config", "data", "cache", "state" }) do
|
for _, name in ipairs({ "config", "data", "cache", "state" }) do
|
||||||
assert(vim.fn.stdpath(path):find(".tests/" .. path))
|
local path = Util.norm(vim.fn.stdpath(name) --[[@as string]])
|
||||||
|
assert(path:find(".tests/" .. name, 1, true), path .. " not in .tests")
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
|
|
Loading…
Reference in New Issue