Merge remote-tracking branch 'origin/main' into sync-7.3-with-main

This commit is contained in:
octicon-git-branch(16/)
octicon-tag(16/)
amandaesmith3
2023-08-04 14:01:51 -05:00
gitea-unlock(16/)
octicon-diff(16/tw-mr-1) 108 changed files with 1344 additions and 393 deletions

5
core/src/components/toast/test/is-open/toast.e2e.ts
View File

@@ -24,5 +24,10 @@ configs({ modes: ['ios'], directions: ['ltr'] }).forEach(({ title, config }) =>
await ionToastDidDismiss.next();
await expect(toast).toBeHidden();
});
test('should open if isOpen is true on load', async ({ page }) => {
await page.setContent('<ion-toast is-open="true"></ion-toast>', config);
await expect(page.locator('ion-toast')).toBeVisible();
});
});
});