neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit f4693d99dfb8225b600c1119f5e45262bcdd0b25
parent 29aa08a09da088178bccc5ea29ac1c872bc4ab32
Author: Dundar Göc <gocdundar@gmail.com>
Date:   Tue, 29 Mar 2022 14:14:37 +0200

test: don't print NVIMLOG on success

Diffstat:
Mtest/busted/outputHandlers/nvim.lua | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/test/busted/outputHandlers/nvim.lua b/test/busted/outputHandlers/nvim.lua @@ -1,5 +1,4 @@ local pretty = require 'pl.pretty' -local global_helpers = require('test.helpers') -- Colors are disabled by default. #15610 local colors = setmetatable({}, {__index = function() return function(s) return s == nil and '' or tostring(s) end end}) @@ -192,7 +191,6 @@ return function(options) local tests = (testCount == 1 and 'test' or 'tests') local files = (fileCount == 1 and 'file' or 'files') io.write(globalTeardown) - io.write(global_helpers.read_nvim_log(nil, true)) io.write(suiteEndString:format(testCount, tests, fileCount, files, elapsedTime_ms)) io.write(getSummaryString()) io.flush()