feat(platform): add vehicle data management console

This commit is contained in:
lingniu
2026-07-03 20:55:54 +08:00
parent 0d8916df47
commit 859bc3e9ee
45 changed files with 6837 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { render, screen } from '@testing-library/react';
import { expect, test } from 'vitest';
import App from '../App';
test('renders vehicle platform shell', () => {
render(<App />);
expect(screen.getByText('车辆数据中台')).toBeInTheDocument();
expect(screen.getAllByText('总览工作台').length).toBeGreaterThanOrEqual(1);
});