diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-12-30 12:48:05 +0100 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2023-12-30 18:09:16 +0100 |
commit | b9cf3880455c6ee2c3e9cc9a9d2ad2694c075ec4 (patch) | |
tree | b4424b99cc714592e7cdc6509711b0762b6db6f1 /test/functional/vimscript/api_functions_spec.lua | |
parent | d51b6157473c4830313b566116aa3ad38dc97412 (diff) | |
download | rneovim-b9cf3880455c6ee2c3e9cc9a9d2ad2694c075ec4.tar.gz rneovim-b9cf3880455c6ee2c3e9cc9a9d2ad2694c075ec4.tar.bz2 rneovim-b9cf3880455c6ee2c3e9cc9a9d2ad2694c075ec4.zip |
test(functional): remove faulty pending check
Problem: `functional/vimscript/api_functions_spec` skips a test if the
runtime files are not generated, but this check was broken in a
refactor.
Solution: Since runtime files are now generated for all test targets, do
not skip this test.
Diffstat (limited to 'test/functional/vimscript/api_functions_spec.lua')
-rw-r--r-- | test/functional/vimscript/api_functions_spec.lua | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/functional/vimscript/api_functions_spec.lua b/test/functional/vimscript/api_functions_spec.lua index 66136de1d1..9a866d0e2d 100644 --- a/test/functional/vimscript/api_functions_spec.lua +++ b/test/functional/vimscript/api_functions_spec.lua @@ -1,6 +1,5 @@ local helpers = require('test.functional.helpers')(after_each) local Screen = require('test.functional.ui.screen') -local luv = require('luv') local neq, eq, command = helpers.neq, helpers.eq, helpers.command local clear, curbufmeths = helpers.clear, helpers.curbufmeths local exc_exec, expect, eval = helpers.exc_exec, helpers.expect, helpers.eval @@ -156,10 +155,6 @@ describe('eval-API', function() end) it('are highlighted by vim.vim syntax file', function() - if luv.fs_stat("build/runtime/syntax/vim/generated.vim").uid == nil then - pending("runtime was not built, skipping test") - return - end local screen = Screen.new(40, 8) screen:attach() screen:set_default_attr_ids({ |