From 7ce8fdc4be09d5c88a00175d20223689ae409ff8 Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Sat, 22 Aug 2026 22:03:16 +0300 Subject: [PATCH] fix reschedule timeline expectation --- frontend/website/cypress/e2e/set-scheduling.cy.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/website/cypress/e2e/set-scheduling.cy.ts b/frontend/website/cypress/e2e/set-scheduling.cy.ts index 936bfb8..e0518a4 100644 --- a/frontend/website/cypress/e2e/set-scheduling.cy.ts +++ b/frontend/website/cypress/e2e/set-scheduling.cy.ts @@ -607,6 +607,10 @@ describe('set scheduling', () => { cy.get('.schedule-range').should('contain.text', 'Aug 10, 2026 to Aug 16, 2026') cy.get('[data-assignment-section="remaining"] [data-schedule-day]').then(($days) => { expect([...$days].map((day) => day.getAttribute('data-schedule-date'))).to.deep.equal([ + '2026-08-11', + '2026-08-12', + '2026-08-13', + '2026-08-14', '2026-08-15', '2026-08-16', ])