Landing page.
This commit is contained in:
parent
80539fd199
commit
6ef9843835
16 changed files with 1405 additions and 57 deletions
|
|
@ -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()
|
||||
})
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue