@@ -11,7 +11,7 @@ const server = setupServer(
1111 // Mock installation status endpoint
1212 http . get ( "*/api/install/infra/status" , ( ) => {
1313 return HttpResponse . json ( {
14- status : { state : "Running" , description : "Installing… " } ,
14+ status : { state : "Running" , description : "Installing... " } ,
1515 components : [
1616 { name : "Runtime" , status : { state : "Pending" } } ,
1717 { name : "Disaster Recovery" , status : { state : "Pending" } }
@@ -57,11 +57,11 @@ describe("InstallationStep", () => {
5757 expect ( screen . getByText ( "Installing infrastructure components" ) ) . toBeInTheDocument ( ) ;
5858
5959 // Check progress and status indicators
60- expect ( screen . getByText ( "Preparing installation… " ) ) . toBeInTheDocument ( ) ;
60+ expect ( screen . getByText ( "Preparing installation... " ) ) . toBeInTheDocument ( ) ;
6161
6262 // Wait for progress update
6363 await waitFor ( ( ) => {
64- expect ( screen . getByText ( "Installing… " ) ) . toBeInTheDocument ( ) ;
64+ expect ( screen . getByText ( "Installing... " ) ) . toBeInTheDocument ( ) ;
6565 } ) ;
6666
6767 // Verify Runtime component
@@ -121,7 +121,7 @@ describe("InstallationStep", () => {
121121 const drContainer = screen . getByTestId ( "status-indicator-disaster-recovery" ) ;
122122 expect ( drContainer ) . toBeInTheDocument ( ) ;
123123 expect ( within ( drContainer ) . getByTestId ( "status-title" ) ) . toHaveTextContent ( "Disaster Recovery" ) ;
124- expect ( within ( drContainer ) . getByTestId ( "status-text" ) ) . toHaveTextContent ( "Installing… " ) ;
124+ expect ( within ( drContainer ) . getByTestId ( "status-text" ) ) . toHaveTextContent ( "Installing... " ) ;
125125
126126 // Next button should still be disabled
127127 expect ( screen . getByText ( "Next: Finish" ) ) . toBeDisabled ( ) ;
0 commit comments