mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-15 00:33:06 +03:00
13 lines
516 B
TypeScript
13 lines
516 B
TypeScript
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);
|
|
}
|