feat: 添加管理后台页面和功能,优化测试和性能配置

refactor: 重构页面导航和滚动逻辑,提升用户体验

test: 更新测试配置和用例,增加覆盖率和稳定性

perf: 优化性能指标和阈值,适应开发环境需求

ci: 添加Lighthouse CI工作流,集成性能测试

docs: 更新API文档和健康检查端点

fix: 修复登录页面和表单提交问题

style: 调整响应式布局和可访问性改进

chore: 更新依赖项和脚本配置
This commit is contained in:
张翔
2026-03-24 10:11:30 +08:00
parent 08978d38c8
commit f5dec95a83
85 changed files with 12331 additions and 1408 deletions
@@ -32,7 +32,7 @@ test.describe('首页回归测试 @regression', () => {
await homePage.clickNavigationItem(labels[i]);
await homePage.page.waitForTimeout(1000);
const url = homePage.page.url();
expect(url).toContain('#');
expect(url).toMatch(/\/|section=/);
}
});
@@ -48,14 +48,14 @@ test.describe('首页回归测试 @regression', () => {
await homePage.logo.click();
await homePage.page.waitForTimeout(1000);
const url = homePage.page.url();
expect(url).toMatch(/\/$/);
expect(url).toMatch(/\/(\?section=.*)?$/);
});
test('应该能够通过立即咨询按钮跳转到联系页面', async ({ homePage }) => {
await homePage.clickContactButton();
await homePage.page.waitForTimeout(1000);
const url = homePage.page.url();
expect(url).toContain('#contact');
expect(url).toContain('/contact');
});
test('应该能够打开和关闭移动端菜单', async ({ homePage }) => {
@@ -104,7 +104,6 @@ test.describe('首页回归测试 @regression', () => {
await homePage.getCasesSectionTitle(),
await homePage.getAboutSectionTitle(),
await homePage.getNewsSectionTitle(),
await homePage.getContactSectionTitle(),
];
titles.forEach(title => {
expect(title).toBeTruthy();
@@ -118,7 +117,7 @@ test.describe('首页回归测试 @regression', () => {
expect(bottomScroll).toBeGreaterThan(0);
await homePage.scrollToTop();
await homePage.page.waitForTimeout(1000);
await homePage.page.waitForTimeout(3000);
const topScroll = await homePage.page.evaluate(() => window.scrollY);
expect(topScroll).toBeLessThan(100);
});