mirror of
https://github.com/neovim/neovim.git
synced 2024-12-29 14:41:06 -07:00
00d46f6328
Extending the original TAP handler was not working as expected. This adds a new function for displaying the log. Ref: https://github.com/neovim/neovim/pull/10876
17 lines
416 B
Lua
17 lines
416 B
Lua
-- Extends the upstream TAP handler, to display the log with suiteEnd.
|
|
|
|
local global_helpers = require('test.helpers')
|
|
|
|
return function(options)
|
|
local busted = require 'busted'
|
|
local handler = require 'busted.outputHandlers.TAP'(options)
|
|
|
|
local suiteEnd = function()
|
|
io.write(global_helpers.read_nvim_log())
|
|
return nil, true
|
|
end
|
|
busted.subscribe({ 'suite', 'end' }, suiteEnd)
|
|
|
|
return handler
|
|
end
|