diff --git a/tests/specs/log_spec.lua b/tests/specs/log_spec.lua index cf37dad..acf4fe0 100644 --- a/tests/specs/log_spec.lua +++ b/tests/specs/log_spec.lua @@ -18,12 +18,18 @@ a.describe("log", function() end) a.it("Structlog should be able to write to LSP pipeline.", function() - log:info("Test lsp", "lsp") + log.lsp.info("Test lsp") end) a.it("Structlog should be able to write to qvim pipeline.", function() - log:info("Test Qvim") + log.qvim.info("Test Qvim") end) a.it("Structlog should be able to write to userconf pipeline.", function() - log:info("Test userconf", "userconf") + log.userconf.info("Test userconf") + end) + a.it("Structlog should be able to write to dap pipeline.", function() + log.dap.info("Test dap") + end) + a.it("Structlog should be able to write to none_ls pipeline.", function() + log.none_ls.info("Test none_ls") end) end)