This commit is contained in:
Barrett Ruth 2025-09-16 00:25:40 -04:00
parent 087c4ffa43
commit 88d5ea1528
2 changed files with 4 additions and 9 deletions

View file

@ -303,6 +303,10 @@ local function toggle_test_panel()
local prefix = i == test_state.current_index and "> " or " "
local tab = string.format("%s%d.", prefix, i)
if test_case.ok ~= nil then
tab = tab .. string.format(" [ok:%-5s]", tostring(test_case.ok))
end
if test_case.code then
tab = tab .. string.format(" [code:%-" .. max_code_width .. "s]", tostring(test_case.code))
end
@ -312,10 +316,6 @@ local function toggle_test_panel()
tab = tab .. string.format(" [time:%-" .. max_time_width .. "s]", time_text)
end
if test_case.ok ~= nil then
tab = tab .. string.format(" [ok:%-5s]", tostring(test_case.ok))
end
if test_case.signal then
tab = tab .. string.format(" [%s]", test_case.signal)
end
@ -327,7 +327,6 @@ local function toggle_test_panel()
if current_test then
table.insert(tab_lines, "")
table.insert(tab_lines, "Input:")
table.insert(tab_lines, "")
for _, line in ipairs(vim.split(current_test.input, "\n", { plain = true, trimempty = true })) do
table.insert(tab_lines, line)
end
@ -336,7 +335,6 @@ local function toggle_test_panel()
return tab_lines
end
local function update_expected_pane()
local test_state = test_module.get_test_panel_state()
local current_test = test_state.test_cases[test_state.current_index]
@ -347,7 +345,6 @@ local function toggle_test_panel()
local expected_lines = {}
table.insert(expected_lines, "Expected:")
table.insert(expected_lines, "")
local expected_text = current_test.expected
for _, line in ipairs(vim.split(expected_text, "\n", { plain = true, trimempty = true })) do
@ -369,7 +366,6 @@ local function toggle_test_panel()
if current_test.actual then
table.insert(actual_lines, "Actual:")
table.insert(actual_lines, "")
for _, line in ipairs(vim.split(current_test.actual, "\n", { plain = true, trimempty = true })) do
table.insert(actual_lines, line)
end