1234567891011121314151617 |
- -- 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(nil, true))
- return nil, true
- end
- busted.subscribe({ 'suite', 'end' }, suiteEnd)
- return handler
- end
|