fix(render): change pending status text to symbol

This commit is contained in:
Barrett Ruth 2026-01-27 13:31:07 -05:00
parent 0f513370ac
commit d4c5f08b5f

View file

@ -31,7 +31,7 @@ local exit_code_names = {
---@return StatusInfo
function M.get_status_info(ran_test_case)
if ran_test_case.status == 'pending' then
return { text = 'WAIT', highlight_group = 'CpTestNA' }
return { text = '...', highlight_group = 'CpTestNA' }
elseif ran_test_case.status == 'running' then
return { text = 'RUN', highlight_group = 'CpTestNA' }
end