diff --git a/core/src/components/datetime/test/values/datetime.e2e.ts b/core/src/components/datetime/test/values/datetime.e2e.ts index 42c23da19c..788e5692f7 100644 --- a/core/src/components/datetime/test/values/datetime.e2e.ts +++ b/core/src/components/datetime/test/values/datetime.e2e.ts @@ -50,17 +50,3 @@ test.describe('datetime: values', () => { await expect(items).toHaveText(['01', '02', '03']); }); }); - -test('setting value to empty string should treat it as having no date', async ({ page, skip }) => { - skip.rtl(); - skip.mode('ios'); - await page.setContent(` - - `); - - await page.waitForSelector('.datetime-ready'); - - // Should render current month with today outlined. - const calendarDayToday = page.locator('ion-datetime .calendar-day-today'); - await expect(calendarDayToday).toBeVisible(); -});