Skip to content

Commit

Permalink
fix(tasty): update error message line parsing logic
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Jan 6, 2025
1 parent 053781c commit 43378c6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lua/neotest-haskell/tasty.lua
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ end
local function is_error_message_line_candidate(line)
return not (
line:match(util.escape('Use -p ')) ~= nil
or line:match(util.escape('tests failed (0.00s)')) ~= nil
or get_failed_name(line) ~= nil
or get_succeeded_name(line) ~= nil
)
Expand Down

0 comments on commit 43378c6

Please sign in to comment.