Skip to content

Commit 5850520

Browse files
Update core/src/components/textarea/test/states/textarea.e2e.ts
Co-authored-by: Maria Hutt <[email protected]>
1 parent f1c1513 commit 5850520

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

core/src/components/textarea/test/states/textarea.e2e.ts

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -46,29 +46,4 @@ configs({ modes: ['ionic-md'], directions: ['ltr'] }).forEach(({ title, screensh
4646
});
4747
});
4848

49-
test.describe(title('textarea: states'), () => {
50-
test('should render readonly textarea correctly', async ({ page }) => {
51-
await page.setContent(
52-
`
53-
<ion-textarea fill="outline" label="Email" value="[email protected]" readonly="true"></ion-textarea>
54-
`,
55-
config
56-
);
57-
58-
const textarea = page.locator('ion-textarea');
59-
await expect(textarea).toHaveScreenshot(screenshot(`textarea-readonly`));
60-
});
61-
62-
test('should render disabled textarea correctly', async ({ page }) => {
63-
await page.setContent(
64-
`
65-
<ion-textarea fill="outline" label="Email" value="[email protected]" disabled="true"></ion-textarea>
66-
`,
67-
config
68-
);
69-
70-
const textarea = page.locator('ion-textarea');
71-
await expect(textarea).toHaveScreenshot(screenshot(`textarea-disabled`));
72-
});
73-
});
7449
});

0 commit comments

Comments
 (0)