feat(GRO-1174): add pet size/coat dropdowns to booking wizard #8

Merged
The Dogfather merged 2 commits from flea-flicker/pet-profile-editor into dev 2026-05-21 00:43:10 +00:00
Showing only changes of commit f414d2589f - Show all commits
+1 -1
View File
@@ -111,7 +111,7 @@ describe("PetForm", () => {
render(<PetForm pet={petWithAlert} onSave={onSave} onCancel={onCancel} />);
const removeButtons = screen.getAllByRole("button", { name: "" });
if (removeButtons.length === 0) return;
const removeButton = removeButtons[0];
const removeButton = removeButtons[0]!;
if (!removeButton) return;
fireEvent.click(removeButton);
expect(screen.queryByText("Allergic to chicken")).toBeNull();