aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/App.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/App.test.tsx')
-rw-r--r--frontend/src/App.test.tsx10
1 files changed, 10 insertions, 0 deletions
diff --git a/frontend/src/App.test.tsx b/frontend/src/App.test.tsx
new file mode 100644
index 0000000..f1572a7
--- /dev/null
+++ b/frontend/src/App.test.tsx
@@ -0,0 +1,10 @@
+import { render, screen } from '@testing-library/react';
+import App from './App';
+import { describe, it, expect } from 'vitest';
+
+describe('App', () => {
+ it('renders heading', () => {
+ render(<App />);
+ expect(screen.getByRole('heading', { level: 1 })).toBeInTheDocument(); // Adjust based on actual App content
+ });
+});