Merge pull request #18903 from jamessan/skip-test-parsers

test(ts): skip test if C parser is not available
This commit is contained in:
James McCoy 2022-06-08 21:10:01 -04:00 committed by GitHub
commit 8a70c53dad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,6 +70,7 @@ describe('treesitter API', function()
end)
it('checks if vim.treesitter.get_parser tries to create a new parser on filetype change', function ()
if pending_c_parser(pending) then return end
command("set filetype=c")
-- Should not throw an error when filetype is c
eq('c', exec_lua("return vim.treesitter.get_parser(0):lang()"))