Skip to content

Commit

Permalink
feat(client): remove error aggregation
Browse files Browse the repository at this point in the history
The error aggregation doesn't know enough information about the tests
structure to aggregate correctly. Instead this is left to adapters.

See #99
  • Loading branch information
rcarriga committed Sep 4, 2022
1 parent 99c59dd commit 2a887fe
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lua/neotest/client/runner.lua
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,6 @@ function TestRunner:_missing_results(tree, results, partial)
parent_result.status = pos_result.status
end

if pos_result.errors then
parent_result.errors = vim.list_extend(parent_result.errors or {}, pos_result.errors)
end

results_proxy[parent_pos.id] = parent_result
end
end
Expand Down

0 comments on commit 2a887fe

Please sign in to comment.