Sets up API methods and types. Sets up a colorscheme. Sets up a homepage. Removes tailwind in favor of mui for now. Reviewed-on: #7 Co-authored-by: Drew Galbraith <drew@tiramisu.one> Co-committed-by: Drew Galbraith <drew@tiramisu.one>
16 lines
512 B
TypeScript
16 lines
512 B
TypeScript
import { render, screen } from '@testing-library/react'
|
|
import { describe, it, expect } from 'vitest'
|
|
import Home from './home'
|
|
|
|
describe('Home component', () => {
|
|
it('should render task management interface', () => {
|
|
render(<Home />)
|
|
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()
|
|
})
|
|
})
|