ef056a10e5
修复文件:
- e2e/smoke/health-check.spec.ts
- e2e/smoke/critical-paths.spec.ts
修复内容:
1. 添加 { waitUntil: 'domcontentloaded' } 选项,避免页面加载超时
2. 使用 getByRole('banner') 替代 locator('header'),避免严格模式冲突
3. 使用 getByRole('navigation').first() 替代 locator('nav'),避免多个导航元素冲突
4. 增加断言超时时间,提高测试稳定性
测试结果:
- ✅ 8个冒烟测试全部通过
- ⏱️ 总耗时:9.6秒
- 🚀 测试速度大幅提升
22 lines
731 B
TypeScript
22 lines
731 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
test.describe('健康检查 @smoke @critical', () => {
|
|
test('应用能够正常启动', async ({ page }) => {
|
|
await page.goto('/', { waitUntil: 'domcontentloaded' });
|
|
await expect(page).toHaveTitle(/四川睿新致远科技有限公司/, { timeout: 10000 });
|
|
});
|
|
|
|
test('健康检查API正常', async ({ request }) => {
|
|
const response = await request.get('/api/health');
|
|
expect(response.status()).toBe(200);
|
|
|
|
const body = await response.json();
|
|
expect(body.status).toBe('ok');
|
|
});
|
|
|
|
test('静态资源可访问', async ({ request }) => {
|
|
const response = await request.get('/favicon.svg');
|
|
expect(response.status()).toBe(200);
|
|
});
|
|
});
|