AFFiNE/tests/libs/load-page.ts

8 lines
173 B
TypeScript
Raw Normal View History

2023-01-03 16:57:33 +03:00
import type { Page } from '@playwright/test';
2022-11-28 16:17:34 +03:00
export const webUrl = 'http://localhost:8080';
export async function openHomePage(page: Page) {
await page.goto(webUrl);
2022-11-28 16:17:34 +03:00
}