test(cli): resolve act() warnings, fix terminalCapabilityManager mock, and update snapshots

This commit is contained in:
Keith Guerin
2026-03-24 20:50:59 -07:00
parent 73c244861c
commit 5062f459c5
7 changed files with 344 additions and 59 deletions
@@ -58,7 +58,7 @@ export const BrailleAnimation: React.FC<BrailleAnimationProps> = ({
const shouldShow = settings.merged.ui?.showSpinner !== false;
useEffect(() => {
if (!shouldShow || !animate) return;
if (!shouldShow || !animate || variant === 'Static') return;
debugState.debugNumAnimatedComponents++;
@@ -70,7 +70,7 @@ export const BrailleAnimation: React.FC<BrailleAnimationProps> = ({
debugState.debugNumAnimatedComponents--;
clearInterval(timer);
};
}, [interval, shouldShow, animate]);
}, [interval, shouldShow, animate, variant]);
const getLength = () => {
const cycle = Math.floor(tick / 8);