Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,24 @@ function AdminPanel() {
- **[Architecture](docs/ARCHITECTURE.md)** - Project structure
- **[Release Guide](docs/RELEASE.md)** - Release workflow

## 🧪 Testing

- Tests are centralized under the `tests/` folder.
- Vitest is configured with jsdom and a global setup in [tests/setup.ts](tests/setup.ts).
- Run tests: `npm test`
- Run coverage: `npm run test:cov`

Folder layout:

```
tests/
components/
context/
hooks/
utils/
setup.ts
```

## 🎯 Key Components

| Component | Description |
Expand Down Expand Up @@ -183,6 +201,9 @@ npm run build
# Run tests
npm test

# Run tests with coverage
npm run test:cov

# Type check
npm run typecheck

Expand Down
Loading