chore(): sync with main

This commit is contained in:
Liam DeBeasi
2022-09-30 12:29:00 -04:00
511 changed files with 1895 additions and 4147 deletions

View File

@@ -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 });
};

View File

@@ -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;