aboutsummaryrefslogtreecommitdiff
path: root/test/functional/fixtures/lua/test_plug/submodule/health.lua
blob: 58162d4515ee79fc8df34345dbf6195e45f1cf3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
local M = {}

M.check = function()
  vim.health.report_start("report 1")
  vim.health.report_ok("everything is fine")
  vim.health.report_start("report 2")
  vim.health.report_ok("nothing to see here")
end

return M