sample.spec.ts 286 B

123456789
  1. import { test, expect } from '@playwright/test'
  2. test.describe('Test Infrastructure', () => {
  3. test('app loads successfully', async ({ page }) => {
  4. await page.goto('/')
  5. // App should render without crashing
  6. await expect(page.locator('body')).toBeVisible()
  7. })
  8. })