fix: block hub might not work (#3199)

This commit is contained in:
Alex Yang
2023-07-13 02:02:00 +08:00
committed by GitHub
parent c066224a95
commit 5dda7d83da
3 changed files with 37 additions and 9 deletions

12
tests/libs/editor.ts Normal file
View File

@@ -0,0 +1,12 @@
import type { Page } from '@playwright/test';
import { expect } from '@playwright/test';
export async function checkBlockHub(page: Page) {
const box = await page.locator('affine-block-hub').boundingBox();
if (!box) throw new Error('block-hub not found');
await page.getByTestId('block-hub').click();
await page.waitForTimeout(500);
const box2 = await page.locator('affine-block-hub').boundingBox();
if (!box2) throw new Error('block-hub not found');
expect(box2.height).toBeGreaterThan(box.height);
}