diff options
Diffstat (limited to 'test/functional/autocmd')
-rw-r--r-- | test/functional/autocmd/tabnew_spec.lua | 2 | ||||
-rw-r--r-- | test/functional/autocmd/tabnewentered_spec.lua | 2 | ||||
-rw-r--r-- | test/functional/autocmd/termclose_spec.lua | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/test/functional/autocmd/tabnew_spec.lua b/test/functional/autocmd/tabnew_spec.lua index 8c94dee49b..2148b21832 100644 --- a/test/functional/autocmd/tabnew_spec.lua +++ b/test/functional/autocmd/tabnew_spec.lua @@ -5,6 +5,8 @@ local command = helpers.command local eq = helpers.eq local eval = helpers.eval +if helpers.pending_win32(pending) then return end + describe('autocmd TabNew', function() before_each(clear) diff --git a/test/functional/autocmd/tabnewentered_spec.lua b/test/functional/autocmd/tabnewentered_spec.lua index 7044307399..f033bd5fe4 100644 --- a/test/functional/autocmd/tabnewentered_spec.lua +++ b/test/functional/autocmd/tabnewentered_spec.lua @@ -1,6 +1,8 @@ local helpers = require('test.functional.helpers')(after_each) local clear, nvim, eq = helpers.clear, helpers.nvim, helpers.eq +if helpers.pending_win32(pending) then return end + describe('TabNewEntered', function() describe('au TabNewEntered', function() describe('with * as <afile>', function() diff --git a/test/functional/autocmd/termclose_spec.lua b/test/functional/autocmd/termclose_spec.lua index 0bc2931992..6871711058 100644 --- a/test/functional/autocmd/termclose_spec.lua +++ b/test/functional/autocmd/termclose_spec.lua @@ -5,6 +5,8 @@ local clear, execute, feed, nvim, nvim_dir = helpers.clear, helpers.execute, helpers.feed, helpers.nvim, helpers.nvim_dir local eval, eq = helpers.eval, helpers.eq +if helpers.pending_win32(pending) then return end + describe('TermClose event', function() local screen before_each(function() |