Skip to content

Commit

Permalink
Hope this works now lol
Browse files Browse the repository at this point in the history
  • Loading branch information
quantumfate committed May 6, 2024
1 parent 6de4ca6 commit 0fbbf4e
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions tests/specs/log_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 0fbbf4e

Please sign in to comment.