import { test, expect } from '@playwright/experimental-ct-react'; import App from './App'; test.use({ viewport: { width: 500, height: 500 } }); test('should work', async ({ mount }) => { const component = await mount(); await expect(component).toContainText('Hello Vite + React!'); });