test(img, popover): skip flaky tests (#26898)

This commit is contained in:
Liam DeBeasi
2023-03-02 14:40:23 -05:00
committed by GitHub
parent 89a465c9ea
commit c250878dee
2 changed files with 5 additions and 3 deletions

View File

@@ -46,7 +46,8 @@ test.describe('img: basic', () => {
});
});
test('should emit ionImgWillLoad', async () => {
// TODO FW-3596
test.skip('should emit ionImgWillLoad', async () => {
await ionImgWillLoad.next();
expect(ionImgWillLoad).toHaveReceivedEventTimes(1);

View File

@@ -1,7 +1,7 @@
import { expect } from '@playwright/test';
import { test, Viewports } from '@utils/test/playwright';
import { openPopover, screenshotPopover } from '../test.utils';
import { openPopover } from '../test.utils';
test.describe('popover: size', async () => {
/**
@@ -22,6 +22,7 @@ test.describe('popover: size', async () => {
await expect(page).toHaveScreenshot(`popover-size-${page.getSnapshotSettings()}.png`);
// test this one separately since it would overlap others
await screenshotPopover(page, 'no-event-trigger', 'size');
// TODO FW-3598
//await screenshotPopover(page, 'no-event-trigger', 'size');
});
});