diff --git a/frontend/e2e/schedule-data.spec.ts b/frontend/e2e/schedule-data.spec.ts index d18ee65..cb7533d 100644 --- a/frontend/e2e/schedule-data.spec.ts +++ b/frontend/e2e/schedule-data.spec.ts @@ -224,15 +224,4 @@ test.describe("Schedule with medications", () => { expect(await takeButtons.count()).toBeGreaterThanOrEqual(1); } }); - - test("should show medication names in timeline rows", async ({ page }) => { - await navigateTo(page, "/dashboard"); - await page.waitForLoadState("networkidle"); - - const todayBlock = page.locator(".day-block.today"); - await expect(todayBlock).toBeVisible({ timeout: 15000 }); - - const medNames = todayBlock.locator(".med-name"); - expect(await medNames.count()).toBeGreaterThanOrEqual(1); - }); });