From 23e3c7d6ec714aeb80f78f7c551fda0929e6a9e8 Mon Sep 17 00:00:00 2001
From: Ayesha Shafique <79274585+Aisha630@users.noreply.github.com>
Date: Tue, 8 Jul 2025 11:14:42 +0500
Subject: style: Format execution time as minutes, seconds (#2707)
---
packages/cli/src/ui/components/LoadingIndicator.test.tsx | 16 ++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)
(limited to 'packages/cli/src/ui/components/LoadingIndicator.test.tsx')
diff --git a/packages/cli/src/ui/components/LoadingIndicator.test.tsx b/packages/cli/src/ui/components/LoadingIndicator.test.tsx
index ba161062..9e647208 100644
--- a/packages/cli/src/ui/components/LoadingIndicator.test.tsx
+++ b/packages/cli/src/ui/components/LoadingIndicator.test.tsx
@@ -97,13 +97,25 @@ describe('', () => {
it('should display the elapsedTime correctly when Responding', () => {
const props = {
currentLoadingPhrase: 'Working...',
- elapsedTime: 8,
+ elapsedTime: 60,
};
const { lastFrame } = renderWithContext(
,
StreamingState.Responding,
);
- expect(lastFrame()).toContain('(esc to cancel, 8s)');
+ expect(lastFrame()).toContain('(esc to cancel, 1m)');
+ });
+
+ it('should display the elapsedTime correctly in human-readable format', () => {
+ const props = {
+ currentLoadingPhrase: 'Working...',
+ elapsedTime: 125,
+ };
+ const { lastFrame } = renderWithContext(
+ ,
+ StreamingState.Responding,
+ );
+ expect(lastFrame()).toContain('(esc to cancel, 2m 5s)');
});
it('should render rightContent when provided', () => {
--
cgit v1.2.3