mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-02 11:31:08 +03:00
14 lines
487 B
TypeScript
14 lines
487 B
TypeScript
import { test } from '@affine-test/kit/playwright';
|
|
import { checkBlockHub } from '@affine-test/kit/utils/editor';
|
|
import { openHomePage } from '@affine-test/kit/utils/load-page';
|
|
import { newPage, waitEditorLoad } from '@affine-test/kit/utils/page-logic';
|
|
|
|
test('block-hub should work', async ({ page }) => {
|
|
await openHomePage(page);
|
|
await waitEditorLoad(page);
|
|
await checkBlockHub(page);
|
|
await newPage(page);
|
|
await page.waitForTimeout(500);
|
|
await checkBlockHub(page);
|
|
});
|