feat(platform): streamline vehicle operations shell

This commit is contained in:
lingniu
2026-07-05 01:04:08 +08:00
parent b824289cf6
commit bb18a5075c
3 changed files with 75 additions and 21 deletions

View File

@@ -22,10 +22,10 @@ test('renders vehicle platform shell', () => {
render(<App />);
expect(screen.getByText('车辆服务中台')).toBeInTheDocument();
expect(screen.getByText('地图监控 / 轨迹回放 / 里程统计')).toBeInTheDocument();
expect(screen.getByText('车辆工作台')).toBeInTheDocument();
expect(screen.getByText('轨迹与统计')).toBeInTheDocument();
expect(screen.getByText('车辆运营')).toBeInTheDocument();
expect(screen.getByText('轨迹报表')).toBeInTheDocument();
expect(screen.getAllByText('告警通知').length).toBeGreaterThanOrEqual(1);
expect(screen.getByText('系统运维')).toBeInTheDocument();
expect(screen.getByText('平台运维')).toBeInTheDocument();
expect(screen.getAllByText('运营驾驶舱').length).toBeGreaterThanOrEqual(1);
});