aboutsummaryrefslogtreecommitdiff
path: root/test/functional/lua/help_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2022-10-04 11:16:07 -0400
committerGitHub <noreply@github.com>2022-10-04 11:16:07 -0400
commit179d2d67d802a9f10ffbc69328b7f2a21dfbde3a (patch)
tree97bf3184a3bb1e116dba64dc08425f3914c45acd /test/functional/lua/help_spec.lua
parent28fbdd338586e066aa3e540333513b04c54361bc (diff)
parent03bc23de36c85b453bba6ac1338c4d51ea3508b1 (diff)
downloadrneovim-179d2d67d802a9f10ffbc69328b7f2a21dfbde3a.tar.gz
rneovim-179d2d67d802a9f10ffbc69328b7f2a21dfbde3a.tar.bz2
rneovim-179d2d67d802a9f10ffbc69328b7f2a21dfbde3a.zip
Merge #20412 feat(docs): HTML generator
Diffstat (limited to 'test/functional/lua/help_spec.lua')
-rw-r--r--test/functional/lua/help_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/lua/help_spec.lua b/test/functional/lua/help_spec.lua
index a00aaea9d2..6743648819 100644
--- a/test/functional/lua/help_spec.lua
+++ b/test/functional/lua/help_spec.lua
@@ -21,7 +21,7 @@ describe(':help docs', function()
ok(rv.helpfiles > 100, '>100 :help files', rv.helpfiles)
-- Check that parse errors did not increase wildly.
-- TODO: Fix all parse errors in :help files.
- ok(rv.err_count < 250, '<250 parse errors', rv.err_count)
+ ok(rv.err_count < 280, '<280 parse errors', rv.err_count)
eq({}, rv.invalid_links, exec_lua([[return 'found invalid :help tag links:\n'..vim.inspect(...)]], rv.invalid_links))
end)