test(playwright): remove redundant wait (#26038)

This commit is contained in:
Liam DeBeasi
2022-09-29 14:43:19 -05:00
committed by GitHub
parent b43f17fc4a
commit cd6050a34b

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