import { test, expect } from '@playwright/test'; test('home page shows ready state', async ({ page }) => { await page.goto('/'); await expect(page).toHaveURL('http://127.0.0.1:4173/'); await expect(page.getByRole('heading', { name: 'Playwright fixture ready' })).toBeVisible(); });