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