diff options
author | James McCoy <jamessan@jamessan.com> | 2019-01-01 11:27:23 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2019-01-01 11:27:23 -0500 |
commit | b5de158fdf02d84219eff651f978c66ab99f2b58 (patch) | |
tree | 4b76efe2b9cda6cd7061e547febb3c3a9f8c5a76 /test/functional/ui/input_spec.lua | |
parent | e53e56d5e5636ec183683fe394b271a2abcb58d8 (diff) | |
download | rneovim-b5de158fdf02d84219eff651f978c66ab99f2b58.tar.gz rneovim-b5de158fdf02d84219eff651f978c66ab99f2b58.tar.bz2 rneovim-b5de158fdf02d84219eff651f978c66ab99f2b58.zip |
Mark "feeding large chunks of input with <Paste>" fragile
Diffstat (limited to 'test/functional/ui/input_spec.lua')
-rw-r--r-- | test/functional/ui/input_spec.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/ui/input_spec.lua b/test/functional/ui/input_spec.lua index 7f9cd190ee..850efed282 100644 --- a/test/functional/ui/input_spec.lua +++ b/test/functional/ui/input_spec.lua @@ -61,6 +61,9 @@ describe('feeding large chunks of input with <Paste>', function() end) it('ok', function() + if helpers.skip_fragile(pending) then + return + end local t = {} for i = 1, 20000 do t[i] = 'item ' .. tostring(i) |