feat: bump blocksuite (#5953)

This commit is contained in:
regischen
2024-02-29 14:33:50 +08:00
committed by GitHub
parent fa534869e1
commit d1e6b23e1a
121 changed files with 665 additions and 674 deletions
+2 -2
View File
@@ -89,7 +89,7 @@ test('share page with default edgeless', async ({ page, browser }) => {
await page.keyboard.press('Enter', { delay: 50 });
await page.keyboard.type('TEST CONTENT', { delay: 50 });
await clickEdgelessModeButton(page);
await expect(page.locator('affine-edgeless-page')).toBeVisible({
await expect(page.locator('affine-edgeless-root')).toBeVisible({
timeout: 1000,
});
await page.getByTestId('cloud-share-menu-button').click();
@@ -106,7 +106,7 @@ test('share page with default edgeless', async ({ page, browser }) => {
const page2 = await context.newPage();
await page2.goto(url);
await waitForEditorLoad(page2);
await expect(page.locator('affine-edgeless-page')).toBeVisible({
await expect(page.locator('affine-edgeless-root')).toBeVisible({
timeout: 1000,
});
expect(await page2.textContent('affine-paragraph')).toContain(
-6
View File
@@ -104,10 +104,4 @@ test.skip('migration', async ({ page, browser }) => {
await page.waitForTimeout(5000);
await page.reload();
await waitForEditorLoad(page);
// click edgeless switch button is flaky in e2e
// await clickEdgelessModeButton(page);
// await expect(page.locator('affine-edgeless-page')).toBeVisible({
// timeout: 1000,
// });
});