feat: bump blocksuite (#7526)

This commit is contained in:
Chen
2024-07-17 18:30:46 +08:00
committed by GitHub
parent ade8db2aec
commit ccac7a883c
10 changed files with 109 additions and 99 deletions
+8 -4
View File
@@ -16,8 +16,12 @@ test('should be able to undo on empty page', async ({ page }) => {
await page.keyboard.press('ControlOrMeta+Z');
// test editor still work
await page.locator('affine-note').click({ force: true });
await page.locator('affine-note').click({ force: true });
await page.locator('affine-note').pressSequentially('test text');
await expect(page.locator('affine-note')).toContainText('test text');
await page.locator('.affine-note-block-container').click({ force: true });
await page.locator('.affine-note-block-container').click({ force: true });
await page
.locator('.affine-note-block-container')
.pressSequentially('test text');
await expect(page.locator('.affine-note-block-container')).toContainText(
'test text'
);
});