test(input): validate input-bottom container is not rendered (#26356)

This commit is contained in:
Sean Perkins
2022-11-28 11:18:02 -05:00
committed by GitHub
parent ce2e37b1a1
commit 0ca6fee1d7
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,7 @@
<ion-app>
<ion-header>
<ion-toolbar>
<ion-title>Input - Basic</ion-title>
<ion-title>Input - Bottom Content</ion-title>
</ion-toolbar>
</ion-header>

View File

@@ -9,7 +9,7 @@ test.describe('input: bottom content', () => {
skip.mode('ios', 'Rendering is the same across modes');
await page.setContent(`<ion-input label="my input"></ion-input>`);
const bottomEl = page.locator('ion-input .item-bottom');
const bottomEl = page.locator('ion-input .input-bottom');
await expect(bottomEl).toHaveCount(0);
});
test('entire input component should render correctly with no fill', async ({ page }) => {