Skip to content

Commit 502791e

Browse files
committed
added skip for date time tests
1 parent ebae821 commit 502791e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

core/src/components/datetime/test/display/datetime.e2e.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ configs({ modes: ['ios', 'md', 'ionic-md'], directions: ['ltr'] }).forEach(({ ti
3030
const datetime = page.locator('ion-datetime');
3131
await expect(datetime).toHaveScreenshot(screenshot(`datetime-display-time-date`));
3232
});
33-
test('time should not have any visual regressions', async ({ page }) => {
33+
// TODO (FW-6769): Enable test when its fixed
34+
test.skip('time should not have any visual regressions', async ({ page }) => {
3435
await page.setContent(
3536
`
3637
<ion-datetime value="2022-02-22T16:30:00" presentation="time"></ion-datetime>
@@ -84,7 +85,8 @@ configs({ modes: ['ios', 'md', 'ionic-md'], directions: ['ltr'] }).forEach(({ ti
8485
const datetime = page.locator('ion-datetime');
8586
await expect(datetime).toHaveScreenshot(screenshot(`datetime-display-cover-time-date`));
8687
});
87-
test('time should not have any visual regressions', async ({ page }) => {
88+
// TODO (FW-6769): Enable test when its fixed
89+
test.skip('time should not have any visual regressions', async ({ page }) => {
8890
await page.setContent(
8991
`
9092
<ion-datetime size="cover" value="2022-02-22T16:30:00" presentation="time"></ion-datetime>

0 commit comments

Comments
 (0)