summaryrefslogtreecommitdiff
path: root/tests/specs/bootstrap_spec.lua
diff options
context:
space:
mode:
authordundargoc <[email protected]>2022-02-18 15:17:17 +0100
committerGitHub <[email protected]>2022-02-18 17:47:17 +0330
commit4400e39a69dce6c2a63b391242e38f781e35025d (patch)
tree6e935a21b7e07339299d6b0348b90cbc3b7d5ded /tests/specs/bootstrap_spec.lua
parent3d4d9db850b6cb9e3eff08d93d95da8b6f97a70c (diff)
chore: fix typos (#2292)
Diffstat (limited to 'tests/specs/bootstrap_spec.lua')
-rw-r--r--tests/specs/bootstrap_spec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/specs/bootstrap_spec.lua b/tests/specs/bootstrap_spec.lua
index b866e4d4..94dd31b1 100644
--- a/tests/specs/bootstrap_spec.lua
+++ b/tests/specs/bootstrap_spec.lua
@@ -6,12 +6,12 @@ a.describe("initial start", function()
local lvim_config_path = get_config_dir() or home_dir .. "/.config/lvim"
local lvim_runtime_path = get_runtime_dir() or home_dir .. "/.local/share/lunarvim"
- a.it("shoud be able to detect test environment", function()
+ a.it("should be able to detect test environment", function()
assert.truthy(os.getenv "LVIM_TEST_ENV")
assert.falsy(package.loaded["lvim.impatient"])
end)
- a.it("should not be reading default neovim directories in the home directoies", function()
+ a.it("should not be reading default neovim directories in the home directories", function()
local rtp_list = vim.opt.rtp:get()
assert.falsy(vim.tbl_contains(rtp_list, vim.fn.stdpath "config"))
end)