Browse Source

fix: QuickstartInitialView test handles multiple logo images

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
handoff-20260429-1057
shrimbly 4 months ago
parent
commit
34b302a25b
  1. 2
      src/components/__tests__/QuickstartInitialView.test.tsx

2
src/components/__tests__/QuickstartInitialView.test.tsx

@ -28,7 +28,7 @@ describe("QuickstartInitialView", () => {
); );
expect(screen.getByText("Node Banana")).toBeInTheDocument(); expect(screen.getByText("Node Banana")).toBeInTheDocument();
expect(screen.getByAltText("")).toBeInTheDocument(); // Logo image expect(screen.getAllByAltText("").length).toBeGreaterThan(0); // Logo images
}); });
it("should render the description text", () => { it("should render the description text", () => {

Loading…
Cancel
Save