chore: bump version (#1812)

This commit is contained in:
Himself65
2023-04-04 08:46:53 -05:00
committed by GitHub
parent 5bd3aa4a80
commit 69cd22a3b8
10 changed files with 119 additions and 285 deletions

View File

@@ -28,12 +28,13 @@ test.describe('affine built in workspace', () => {
await clickNewPageButton(page);
const url = page.url();
await page2.goto(url);
await page.type('.affine-default-page-block-title-container', 'hello', {
delay: 50,
await page.focus('.affine-default-page-block-title');
await page.type('.affine-default-page-block-title', 'hello', {
delay: 100,
});
await page.waitForTimeout(100);
const title = (await page
.locator('.affine-default-page-block-title-container')
.locator('.affine-default-page-block-title')
.textContent()) as string;
expect(title.trim()).toBe('hello');
});