Skip to content

Commit

Permalink
test(accordion): avoid scroll assist cloned input (#25853)
Browse files Browse the repository at this point in the history
  • Loading branch information
liamdebeasi committed Aug 30, 2022
1 parent ff71ad4 commit ac56261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/components/accordion/test/a11y/accordion.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ test.describe('accordion: a11y', () => {
const personalInfoHeader = page.locator('ion-accordion:first-child > ion-item');
const billingAddressHeader = page.locator('ion-accordion:nth-child(2) > ion-item');
const shippingAddressHeader = page.locator('ion-accordion:nth-child(3) > ion-item');
const addressInput = page.locator('#address1 input');
const addressInput = page.locator('#address1 input:not(.cloned-input)');

await page.keyboard.press(tabKey);
await expect(personalInfoHeader).toBeFocused();
Expand Down

0 comments on commit ac56261

Please sign in to comment.