diff options
author | kylo252 <[email protected]> | 2022-02-21 11:51:32 +0100 |
---|---|---|
committer | kylo252 <[email protected]> | 2022-02-21 11:51:32 +0100 |
commit | 3abb0a7350392a4a02f970e8636dcb167c1ba53c (patch) | |
tree | c2f12e15d5fd78cfb0d4a5023c97820bd9a66a83 /tests/specs/bootstrap_spec.lua | |
parent | c8157a0b924279c4344b8c311d793545d1549cf0 (diff) | |
parent | 4400e39a69dce6c2a63b391242e38f781e35025d (diff) |
Merge branch 'rolling'
Diffstat (limited to 'tests/specs/bootstrap_spec.lua')
-rw-r--r-- | tests/specs/bootstrap_spec.lua | 4 |
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) |