mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-23 03:43:57 +03:00
8 lines
173 B
TypeScript
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);
|
|
}
|