Skip to content

Commit 828bc4a

Browse files
committed
Merge remote-tracking branch 'origin/main' into sync-7-09-30
2 parents fffc729 + d17d6c2 commit 828bc4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/components/input/test/masking/input.e2e.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ test.describe('input: masking', () => {
1515
await input.click();
1616

1717
// Playwright types this in one character at a time.
18-
await page.keyboard.type('S p a c e s');
18+
await page.keyboard.type('A B C', { delay: 100 });
1919
await ionInput.next();
2020

2121
// ionInput is called for each character.
22-
await expect(ionInput).toHaveReceivedEventTimes(11);
23-
await expect(input).toHaveJSProperty('value', 'Spaces');
22+
await expect(ionInput).toHaveReceivedEventTimes(5);
23+
await expect(input).toHaveJSProperty('value', 'ABC');
2424
});
2525
});

0 commit comments

Comments
 (0)