From 9db2500fb340ef304c0f15f4379bc33589df9a63 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Thu, 12 Feb 2026 21:44:23 -0800 Subject: Scaffold new frontend and close NK-t0nmbj --- frontend/src/App.test.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 frontend/src/App.test.tsx (limited to 'frontend/src/App.test.tsx') 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(); + expect(screen.getByRole('heading', { level: 1 })).toBeInTheDocument(); // Adjust based on actual App content + }); +}); -- cgit v1.2.3