feat(platform): organize console around vehicle service

This commit is contained in:
lingniu
2026-07-04 19:13:28 +08:00
parent cbe7882d51
commit 75d232e773
4 changed files with 121 additions and 20 deletions

View File

@@ -12,6 +12,10 @@ afterEach(() => {
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.getAllByText('运营驾驶舱').length).toBeGreaterThanOrEqual(1);
});