diff --git a/src/components/testing/TestExplorer.tsx b/src/components/testing/TestExplorer.tsx index 2049fe5c..f8e67e9a 100644 --- a/src/components/testing/TestExplorer.tsx +++ b/src/components/testing/TestExplorer.tsx @@ -965,7 +965,7 @@ export function TestExplorer(props: TestExplorerProps) { @@ -1738,12 +1738,15 @@ export function TestExplorer(props: TestExplorerProps) { align-items: center; gap: 2px; opacity: 0; - transition: opacity 0.1s; + visibility: hidden; + transition: opacity 0.1s, visibility 0.1s; } .test-item:hover .test-item-actions, - .test-item--selected .test-item-actions { + .test-item--selected .test-item-actions, + .test-item:focus-within .test-item-actions { opacity: 1; + visibility: visible; } .test-item-action {