chore(electron): speed up electron tests (#9871)

This commit is contained in:
pengx17
2025-01-24 04:52:26 +00:00
parent 6a74107010
commit 699da97879
4 changed files with 15 additions and 14 deletions

View File

@@ -136,6 +136,8 @@ test('delete workspace and then restore it from backup', async ({ page }) => {
);
//#endregion
await page.waitForTimeout(1000);
//#region 4. restore the workspace from backup
await page.getByTestId('slider-bar-workspace-setting-button').click();
await expect(page.getByTestId('setting-modal')).toBeVisible();

View File

@@ -16,7 +16,6 @@ import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
testDir: './e2e',
fullyParallel: true,
workers: 1,
timeout: process.env.CI ? 50_000 : 30_000,
expect: {
timeout: process.env.CI ? 15_000 : 5_000,
@@ -30,6 +29,7 @@ const config: PlaywrightTestConfig = {
if (process.env.CI) {
config.retries = 5;
config.workers = 2;
}
if (process.env.DEV_SERVER_URL) {

View File

@@ -97,19 +97,6 @@ export const test = base.extend<{
// wait for blocksuite to be loaded
await page.waitForSelector('v-line');
await page.evaluate(() => {
window.localStorage.setItem('dismissAiOnboarding', 'true');
window.localStorage.setItem('dismissAiOnboardingEdgeless', 'true');
window.localStorage.setItem('dismissAiOnboardingLocal', 'true');
});
await page.reload({
timeout: 30000,
});
// wait until the page is stable enough
await page.waitForTimeout(2000);
await use(page as Page);
},
views: async ({ electronApp, page }, use) => {