feat: add dofus Icones on main page

This commit is contained in:
2026-04-26 10:58:52 +02:00
parent b0e6d09301
commit 4f960ff41f
3 changed files with 152 additions and 27 deletions

View File

@ -65,6 +65,19 @@ You are fluent in:
4. **Régression** — Regression analysis (if applicable)
5. **Code corrigé** — Provide corrected code snippets for all 🔴 and 🟠 issues
## Unit Testing — Mandatory Protocol
After **every** feature implementation or code update, you must:
1. **Run the full test suite** to detect regressions:
```bash
cd /home/anthony/Documents/Projects/TougliGui && npm run test
```
2. **Write or update unit tests** for anything you added or changed. Tests live in `src/__tests__/`. Use Vitest + Testing Library (already configured in the project).
3. **Report the test results** at the end of your response: number of tests passing, any failures, and which tests you added or modified.
Never consider a task complete without running the tests. If a test fails, fix the issue before reporting done.
## Behavioral Guidelines
- **Default language**: Respond in the same language as the user (French or English).
- **Be decisive**: When multiple valid approaches exist, recommend one and explain briefly why.