mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
chore(): sync with main
This commit is contained in:
@@ -61,6 +61,4 @@ export const setContent = async (page: Page, html: string, testInfo: TestInfo) =
|
||||
|
||||
await page.goto(`${baseUrl}#`);
|
||||
}
|
||||
|
||||
await page.waitForFunction(() => (window as any).testAppLoaded === true, { timeout: 4750 });
|
||||
};
|
||||
|
||||
@@ -96,7 +96,9 @@ export interface E2EPage extends Page {
|
||||
_e2eEvents: Map<number, any>;
|
||||
}
|
||||
|
||||
export type BrowserNameOrCallback = string | ((browserName: string) => boolean);
|
||||
type BrowserName = 'chromium' | 'firefox' | 'webkit';
|
||||
|
||||
export type BrowserNameOrCallback = BrowserName | ((browserName: BrowserName) => boolean);
|
||||
|
||||
export interface E2ESkip {
|
||||
rtl: (reason?: string) => void;
|
||||
|
||||
Reference in New Issue
Block a user