chore(deps-dev): bump @playwright/test from 1.31.2 to 1.32.0 in /core (#27003)

This commit is contained in:
dependabot[bot]
2023-03-23 12:44:59 -04:00
committed by GitHub
parent 342d448767
commit 53af005122
39 changed files with 25 additions and 27 deletions

View File

@ -162,9 +162,7 @@ test.describe('modal: incorrect usage', () => {
await ionModalDidPresent.next();
const modal = await page.locator('ion-modal');
await modal.evaluate((el: HTMLIonModalElement) => {
el.setCurrentBreakpoint(0.5);
});
await modal.evaluate((el: HTMLIonModalElement) => el.setCurrentBreakpoint(0.5));
expect(warnings.length).toBe(1);
expect(warnings[0]).toBe('[Ionic Warning]: setCurrentBreakpoint is only supported on sheet modals.');