12 lines
762 B
Markdown
12 lines
762 B
Markdown
# Test Suite Overview
|
|
|
|
The tests in this directory act as executable specifications. They were copied from real projects and are meant to be adapted, not run verbatim.
|
|
|
|
How to use them:
|
|
- Rename folders to match the first features you build.
|
|
- Replace imports from `@/...` with your actual modules once they exist.
|
|
- Trim scenarios that do not apply and add new ones that cover risky behaviours or integrations you care about.
|
|
- Keep the error-handling and edge-case checks—they are the reason these suites exist.
|
|
|
|
Once your implementation is in place, run `pnpm test` (or your preferred command) and fix failing specs until everything passes. The goal is to evolve these tests into living documentation for the application you are building off this template.
|