AFFiNE/tests/libs/load-page.ts
2023-05-22 17:11:18 +08:00

8 lines
173 B
TypeScript

import type { Page } from '@playwright/test';
export const webUrl = 'http://localhost:8080';
export async function openHomePage(page: Page) {
await page.goto(webUrl);
}