diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-09-04 16:13:37 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2022-09-06 07:57:46 +0200 |
commit | 6254b0fd3bc725705020192dc9e35635136b9929 (patch) | |
tree | 3e3c069c8fc12f8bab6400d9ff105a9050eac617 /test/functional/treesitter/parser_spec.lua | |
parent | 905dd49fece0903dba4e5a618f503d0237415b14 (diff) | |
download | rneovim-6254b0fd3bc725705020192dc9e35635136b9929.tar.gz rneovim-6254b0fd3bc725705020192dc9e35635136b9929.tar.bz2 rneovim-6254b0fd3bc725705020192dc9e35635136b9929.zip |
ci(tests): don't skip parsers on functionaltest
Treesitter parsers are now a mandatory part of the installation and
should be tested on all platforms. Remove `pending_c_parser` helper.
Diffstat (limited to 'test/functional/treesitter/parser_spec.lua')
-rw-r--r-- | test/functional/treesitter/parser_spec.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/functional/treesitter/parser_spec.lua b/test/functional/treesitter/parser_spec.lua index 7f3b0e770a..ccbd55df0e 100644 --- a/test/functional/treesitter/parser_spec.lua +++ b/test/functional/treesitter/parser_spec.lua @@ -5,13 +5,11 @@ local eq = helpers.eq local insert = helpers.insert local exec_lua = helpers.exec_lua local feed = helpers.feed -local pending_c_parser = helpers.pending_c_parser before_each(clear) describe('treesitter parser API', function() clear() - if pending_c_parser(pending) then return end it('parses buffer', function() if helpers.pending_win32(pending) then return end @@ -249,7 +247,6 @@ void ui_refresh(void) end) it('supports getting text of multiline node', function() - if pending_c_parser(pending) then return end insert(test_text) local res = exec_lua([[ local parser = vim.treesitter.get_parser(0, "c") |