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
@@ -0,0 +1,14 @@
import { test } from '@affine-test/kit/playwright';
import { checkBlockHub } from '../../libs/editor';
import { openHomePage } from '../../libs/load-page';
import { newPage, waitEditorLoad } from '../../libs/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);
});