Files
AFFiNE-Mirror/tests/kit/utils/load-page.ts
T
2023-07-14 00:46:24 +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);
}