summaryrefslogtreecommitdiff
path: root/tests/specs/lsp_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/lsp_spec.lua
parent3d4d9db850b6cb9e3eff08d93d95da8b6f97a70c (diff)
chore: fix typos (#2292)
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()