Landing page.

This commit is contained in:
Drew 2025-09-22 02:32:43 -07:00
parent 80539fd199
commit 6ef9843835
16 changed files with 1405 additions and 57 deletions

View file

@ -3,8 +3,14 @@ import { describe, it, expect } from 'vitest'
import Home from './home'
describe('Home component', () => {
it('should render welcome component', () => {
it('should render task management interface', () => {
render(<Home />)
expect(screen.getByText(/React Router/i)).toBeInTheDocument()
expect(screen.getByText(/Tasks/i)).toBeInTheDocument()
expect(
screen.getByText(/GTD-inspired task management system/i)
).toBeInTheDocument()
expect(
screen.getByText(/Task Management Interface Coming Soon/i)
).toBeInTheDocument()
})
})