mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-24 19:22:49 +03:00
11 lines
392 B
TypeScript
11 lines
392 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 { waitEditorLoad } from '@affine-test/kit/utils/page-logic';
|
|
|
|
test('block-hub should work', async ({ page }) => {
|
|
await openHomePage(page);
|
|
await waitEditorLoad(page);
|
|
await checkBlockHub(page);
|
|
});
|