mirror of
https://github.com/neovim/neovim.git
synced 2025-11-28 21:20:45 +00:00
Merge pull request #5225 from equalsraf/windows-functionaltests
Enable functional tests in Appveyor
This commit is contained in:
@@ -3,6 +3,7 @@ local Screen = require('test.functional.ui.screen')
|
||||
local clear, feed, insert = helpers.clear, helpers.feed, helpers.insert
|
||||
local execute, request, neq = helpers.execute, helpers.request, helpers.neq
|
||||
|
||||
if helpers.pending_win32(pending) then return end
|
||||
|
||||
describe('Buffer highlighting', function()
|
||||
local screen
|
||||
|
||||
@@ -4,6 +4,7 @@ local os = require('os')
|
||||
local clear, feed, insert = helpers.clear, helpers.feed, helpers.insert
|
||||
local execute, request, eq = helpers.execute, helpers.request, helpers.eq
|
||||
|
||||
if helpers.pending_win32(pending) then return end
|
||||
|
||||
describe('color scheme compatibility', function()
|
||||
before_each(function()
|
||||
|
||||
@@ -4,6 +4,8 @@ local feed, next_message, eq = helpers.feed, helpers.next_message, helpers.eq
|
||||
local expect = helpers.expect
|
||||
local Screen = require('test.functional.ui.screen')
|
||||
|
||||
if helpers.pending_win32(pending) then return end
|
||||
|
||||
describe('mappings', function()
|
||||
local cid
|
||||
|
||||
|
||||
@@ -4,6 +4,8 @@ local clear, feed, meths = helpers.clear, helpers.feed, helpers.meths
|
||||
local insert, execute = helpers.insert, helpers.execute
|
||||
local eq, funcs = helpers.eq, helpers.funcs
|
||||
|
||||
if helpers.pending_win32(pending) then return end
|
||||
|
||||
describe('Mouse input', function()
|
||||
local screen
|
||||
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
local session = require('test.functional.helpers')(after_each)
|
||||
local child_session = require('test.functional.terminal.helpers')
|
||||
|
||||
if session.pending_win32(pending) then return end
|
||||
|
||||
describe("shell command :!", function()
|
||||
local screen
|
||||
before_each(function()
|
||||
|
||||
@@ -4,6 +4,8 @@ local spawn, set_session, clear = helpers.spawn, helpers.set_session, helpers.cl
|
||||
local feed, execute = helpers.feed, helpers.execute
|
||||
local insert = helpers.insert
|
||||
|
||||
if helpers.pending_win32(pending) then return end
|
||||
|
||||
describe('Initial screen', function()
|
||||
local screen
|
||||
local nvim_argv = {helpers.nvim_prog, '-u', 'NONE', '-i', 'NONE', '-N',
|
||||
|
||||
@@ -3,6 +3,8 @@ local Screen = require('test.functional.ui.screen')
|
||||
local clear, feed, insert = helpers.clear, helpers.feed, helpers.insert
|
||||
local execute = helpers.execute
|
||||
|
||||
if helpers.pending_win32(pending) then return end
|
||||
|
||||
describe('search highlighting', function()
|
||||
local screen
|
||||
local colors = Screen.colors
|
||||
|
||||
@@ -2,6 +2,8 @@ local helpers = require('test.functional.helpers')(after_each)
|
||||
local Screen = require('test.functional.ui.screen')
|
||||
local clear, feed, execute = helpers.clear, helpers.feed, helpers.execute
|
||||
|
||||
if helpers.pending_win32(pending) then return end
|
||||
|
||||
describe('Signs', function()
|
||||
local screen
|
||||
|
||||
|
||||
@@ -3,6 +3,8 @@ local Screen = require('test.functional.ui.screen')
|
||||
local clear, feed, execute = helpers.clear, helpers.feed, helpers.execute
|
||||
local insert = helpers.insert
|
||||
|
||||
if helpers.pending_win32(pending) then return end
|
||||
|
||||
describe('Screen', function()
|
||||
local screen
|
||||
|
||||
|
||||
@@ -3,6 +3,8 @@ local Screen = require('test.functional.ui.screen')
|
||||
local clear, feed, execute = helpers.clear, helpers.feed, helpers.execute
|
||||
local funcs = helpers.funcs
|
||||
|
||||
if helpers.pending_win32(pending) then return end
|
||||
|
||||
describe("'wildmode'", function()
|
||||
local screen
|
||||
|
||||
|
||||
Reference in New Issue
Block a user