aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui/input_spec.lua
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2019-01-01 16:02:23 -0500
committerGitHub <noreply@github.com>2019-01-01 16:02:23 -0500
commite2e5a105c6fec68b7a9609d4f273fee098de373d (patch)
tree06c9be986b305402029f4ca9da2ac06b5e476cef /test/functional/ui/input_spec.lua
parenta0140da7b0fa84a054154988dc482036b2296a99 (diff)
parent2fbe28bc058d142e4374999548ef2ff7b4fbc215 (diff)
downloadrneovim-e2e5a105c6fec68b7a9609d4f273fee098de373d.tar.gz
rneovim-e2e5a105c6fec68b7a9609d4f273fee098de373d.tar.bz2
rneovim-e2e5a105c6fec68b7a9609d4f273fee098de373d.zip
Merge pull request #9436 from jamessan/more-fragile-tests
Mark a few more functionaltests as fragile
Diffstat (limited to 'test/functional/ui/input_spec.lua')
-rw-r--r--test/functional/ui/input_spec.lua3
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)