diff --git a/src/play/tui/LeftPanel.tsx b/src/play/tui/LeftPanel.tsx index 7e8f840..6fd8437 100644 --- a/src/play/tui/LeftPanel.tsx +++ b/src/play/tui/LeftPanel.tsx @@ -86,6 +86,7 @@ export function LeftPanel({ return ( @@ -99,11 +100,11 @@ export function LeftPanel({ const tc = item.testCase; const execStatus = tc.execution.status; const marker = execStatus && execStatus !== "Not Executed" ? "●" : "○"; - const displayName = tc.name.length > 25 ? `${tc.name.slice(0, 22)}...` : tc.name; return ( @@ -111,7 +112,7 @@ export function LeftPanel({ {marker} {" "} - {tc.key} {displayName} + {tc.key} {tc.name} {" "} {statusLabel(execStatus)}