fix(core): fix flaky e2e test (#11308)

This commit is contained in:
EYHN
2025-03-31 17:10:54 +08:00
committed by GitHub
parent 231956fd39
commit baf1aad412

View File

@@ -10,7 +10,9 @@ export function getAllPage(page: Page) {
async function clickNewPageButton() {
const newPageButton = page.getByTestId('new-page-button-trigger');
return await newPageButton.click();
return await newPageButton.click({
timeout: 20000,
});
}
async function clickNewEdgelessDropdown() {