summaryrefslogtreecommitdiff
path: root/tests/specs/lsp_spec.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2022-02-21 11:51:32 +0100
committerkylo252 <[email protected]>2022-02-21 11:51:32 +0100
commit3abb0a7350392a4a02f970e8636dcb167c1ba53c (patch)
treec2f12e15d5fd78cfb0d4a5023c97820bd9a66a83 /tests/specs/lsp_spec.lua
parentc8157a0b924279c4344b8c311d793545d1549cf0 (diff)
parent4400e39a69dce6c2a63b391242e38f781e35025d (diff)
Merge branch 'rolling'
Diffstat (limited to 'tests/specs/lsp_spec.lua')
-rw-r--r--tests/specs/lsp_spec.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/specs/lsp_spec.lua b/tests/specs/lsp_spec.lua
index 633aa17c..388a24bb 100644
--- a/tests/specs/lsp_spec.lua
+++ b/tests/specs/lsp_spec.lua
@@ -8,14 +8,14 @@ a.describe("lsp workflow", function()
local Log = require "lvim.core.log"
local logfile = Log:get_path()
- a.it("shoud be able to delete ftplugin templates", function()
+ a.it("should be able to delete ftplugin templates", function()
if utils.is_directory(lvim.lsp.templates_dir) then
assert.equal(vim.fn.delete(lvim.lsp.templates_dir, "rf"), 0)
end
assert.False(utils.is_directory(lvim.lsp.templates_dir))
end)
- a.it("shoud be able to generate ftplugin templates", function()
+ a.it("should be able to generate ftplugin templates", function()
if utils.is_directory(lvim.lsp.templates_dir) then
assert.equal(vim.fn.delete(lvim.lsp.templates_dir, "rf"), 0)
end
@@ -27,7 +27,7 @@ a.describe("lsp workflow", function()
end)
end)
- a.it("shoud not attempt to re-generate ftplugin templates", function()
+ a.it("should not attempt to re-generate ftplugin templates", function()
lvim.log.level = "debug"
local plugins = require "lvim.plugins"
@@ -46,7 +46,7 @@ a.describe("lsp workflow", function()
end)
end)
- a.it("shoud not include blacklisted servers in the generated templates", function()
+ a.it("should not include blacklisted servers in the generated templates", function()
assert.True(utils.is_directory(lvim.lsp.templates_dir))
require("lvim.lsp").setup()
@@ -57,7 +57,7 @@ a.describe("lsp workflow", function()
end
end)
- a.it("shoud only include one server per generated template", function()
+ a.it("should only include one server per generated template", function()
assert.True(utils.is_directory(lvim.lsp.templates_dir))
require("lvim.lsp").setup()