import { test, expect } from '@playwright/test'; test.describe('Playwright配置验证', () => { test('验证配置加载', async ({ page }) => { await page.goto('/'); const title = await page.title(); expect(title).toBeTruthy(); }); });