diff options
author | James McCoy <jamessan@jamessan.com> | 2022-03-31 15:36:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-31 15:36:18 -0400 |
commit | 68c0e90189b54d14bf9f901e516ef90642d7fb74 (patch) | |
tree | e0f7bb44d15ea089b0fe0db6c4bb01eff5c0083d | |
parent | 4a89812d85436e17c81cc732eacf28fea37bd936 (diff) | |
parent | f4693d99dfb8225b600c1119f5e45262bcdd0b25 (diff) | |
download | rneovim-68c0e90189b54d14bf9f901e516ef90642d7fb74.tar.gz rneovim-68c0e90189b54d14bf9f901e516ef90642d7fb74.tar.bz2 rneovim-68c0e90189b54d14bf9f901e516ef90642d7fb74.zip |
Merge pull request #17906 from dundargoc/test/skip-nvimlog-on-success
-rw-r--r-- | test/busted/outputHandlers/nvim.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/busted/outputHandlers/nvim.lua b/test/busted/outputHandlers/nvim.lua index 0e9801b94b..5e9c52e0bd 100644 --- 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() |