feat(platform): separate customer and ops navigation

This commit is contained in:
lingniu
2026-07-05 03:19:47 +08:00
parent 8b38b1411d
commit 46d2421511
3 changed files with 28 additions and 4 deletions

View File

@@ -27,7 +27,10 @@ test('renders vehicle platform shell', () => {
expect(screen.getAllByText('数据交付').length).toBeGreaterThanOrEqual(1);
expect(screen.getByText('轨迹、里程、历史数据和客户导出')).toBeInTheDocument();
expect(screen.getByText('告警闭环')).toBeInTheDocument();
expect(screen.getByText('运维后台')).toBeInTheDocument();
expect(screen.getByText('平台运维')).toBeInTheDocument();
expect(screen.getAllByText('客户').length).toBeGreaterThanOrEqual(3);
expect(screen.getByText('内部')).toBeInTheDocument();
expect(screen.getByText('客户主流程外查看接入链路和运行质量')).toBeInTheDocument();
expect(screen.getAllByText('运营驾驶舱').length).toBeGreaterThanOrEqual(1);
});