mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 13:01:59 +03:00
7 lines
183 B
TypeScript
7 lines
183 B
TypeScript
import type { Page } from '@playwright/test';
|
|
|
|
export async function openHomePage(page: Page) {
|
|
await page.goto('http://localhost:8080');
|
|
await page.waitForSelector('#__next');
|
|
}
|