mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
test(textarea): skip autogrow test due to flakiness (#27100)
This commit is contained in:
@@ -10,7 +10,8 @@ test.describe('textarea: autogrow', () => {
|
||||
await expect(page).toHaveScreenshot(`textarea-autogrow-diff-${page.getSnapshotSettings()}.png`);
|
||||
});
|
||||
|
||||
test('should grow when typing', async ({ page }) => {
|
||||
// TODO(FW-3920): Autogrow test is flaky
|
||||
test.skip('should grow when typing', async ({ page }) => {
|
||||
await page.setContent(`
|
||||
<ion-textarea aria-label="Textarea" auto-grow="true"></ion-textarea>
|
||||
`);
|
||||
|
||||
@@ -10,7 +10,8 @@ test.describe('textarea: autogrow', () => {
|
||||
expect(await page.screenshot()).toMatchSnapshot(`textarea-autogrow-diff-${page.getSnapshotSettings()}.png`);
|
||||
});
|
||||
|
||||
test('should grow when typing', async ({ page }) => {
|
||||
// TODO(FW-3920): Autogrow test is flaky
|
||||
test.skip('should grow when typing', async ({ page }) => {
|
||||
await page.setContent(
|
||||
`
|
||||
<ion-app>
|
||||
|
||||
Reference in New Issue
Block a user