frontend/tests/browser.test.ts
2024-05-26 16:07:01 +02:00

10 lines
213 B
TypeScript

import { test } from '@playwright/test'
test('test browser', async ({ page }) => {
// point this to wherever you want
await page.goto('http://localhost:5173/')
// keep browser open
await page.pause()
})