chore: bump version (#1364)

This commit is contained in:
Himself65
2023-03-06 20:11:49 -06:00
committed by GitHub
parent 7ae8cfc0f5
commit 33fb20e5cb
7 changed files with 102 additions and 105 deletions

View File

@@ -1,16 +1,16 @@
import type { Page } from '@playwright/test';
export async function newPage(page: Page) {
await page.waitForSelector('virgo-line');
await page.waitForSelector('v-line');
// fixme(himself65): if too fast, the page will crash
await page.getByTestId('sliderBar').getByText('New Page').click({
delay: 100,
});
await page.waitForSelector('virgo-line');
await page.waitForSelector('v-line');
}
export function getBlockSuiteEditorTitle(page: Page) {
return page.locator('virgo-line').nth(0);
return page.locator('v-line').nth(0);
}
export async function clickPageMoreActions(page: Page) {