A React application template configured with:
- Vite for build tooling
- Vitest for unit and component testing
- Playwright for end-to-end testing
# Install dependencies
yarn install
# Start development server
yarn dev
# Run unit/component tests
yarn test
yarn test:ui # with UI
yarn test:coverage # with coverage report
# Run e2e tests
yarn test:e2esrc/- Application source codetest/- Test setup and utilities*.test.tsx- Unit and component tests
tests/- Playwright End-to-end tests
- React 18
- TypeScript
- Vite
- Vitest + Testing Library
- Playwright
dev- Start development serverbuild- Build for productionpreview- Preview production buildtest- Run Vitest teststest:ui- Run Vitest with UItest:coverage- Generate test coverage reporttest:e2e- Run Playwright tests