diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-03-13 04:15:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-13 11:15:24 +0800 |
commit | b466e1d289180fad212a93b173034787fd6be9a8 (patch) | |
tree | bec6d63237106119b38e9f986990ce21a66cd3cc /test/functional/treesitter/parser_spec.lua | |
parent | 2daf0b37dbfe54a4510c1033531dbaefd168c387 (diff) | |
download | rneovim-b466e1d289180fad212a93b173034787fd6be9a8.tar.gz rneovim-b466e1d289180fad212a93b173034787fd6be9a8.tar.bz2 rneovim-b466e1d289180fad212a93b173034787fd6be9a8.zip |
test: unskip working Windows tests (#22537)
Some tests that were previously not working have started to work again
for unspecified reasons, so let's enable them.
Diffstat (limited to 'test/functional/treesitter/parser_spec.lua')
-rw-r--r-- | test/functional/treesitter/parser_spec.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/functional/treesitter/parser_spec.lua b/test/functional/treesitter/parser_spec.lua index c6ca65f9a1..e872861d2a 100644 --- a/test/functional/treesitter/parser_spec.lua +++ b/test/functional/treesitter/parser_spec.lua @@ -7,7 +7,6 @@ local exec_lua = helpers.exec_lua local pcall_err = helpers.pcall_err local feed = helpers.feed local is_os = helpers.is_os -local skip = helpers.skip before_each(clear) @@ -741,7 +740,6 @@ int x = INT_MAX; end) it("should not inject bad languages", function() - skip(is_os('win')) exec_lua([=[ vim.treesitter.add_directive("inject-bad!", function(match, _, _, pred, metadata) metadata.language = "{" |