Add Playwright E2E testing #43

Merged
ghost merged 4 commits from feat/playwright-e2e into main 2026-03-18 02:52:59 +00:00
Showing only changes of commit 6e087cc16b - Show all commits
+1 -1
View File
@@ -34,7 +34,7 @@ test.beforeEach(async ({ page }) => {
route.fulfill({ json: MOCK_CLIENTS })
);
// Pets loaded when a client is selected
await page.route("/api/clients/*/pets", (route) =>
await page.route("/api/pets**", (route) =>
route.fulfill({ json: [] })
);
});