Files
Aniworld/docs
Lukas 8174cf73c4 feat(tests): Add comprehensive user preferences unit tests
- Created tests/unit/test_user_preferences.js with 68 unit tests
- Updated instructions.md to mark i18n complete and track preferences

Coverage:
- Loading preferences: 5 tests (localStorage, empty object, invalid JSON, errors, application)
- Saving preferences: 5 tests (save, overwrite, errors, null/undefined handling)
- Getting preferences: 4 tests (retrieve, empty, parse errors, immutability)
- Applying preferences: 6 tests (theme, language, multiple, empty, partial)
- Updating preference: 5 tests (single, existing, new, apply, persist)
- Resetting preferences: 3 tests (remove, graceful, errors)
- Persistence: 3 tests (theme, language, multiple across sessions)
- Edge cases: 8 tests (large objects, special chars, types, nested, arrays, rapid)
- Default preferences: 2 tests (empty default, no application)
- Storage key: 2 tests (correct key, no interference)

Features validated:
- localStorage save/load/remove operations
- JSON parse/stringify with error handling
- Document attribute application (data-theme, lang)
- Individual preference updates
- Preference persistence across sessions
- Graceful error handling
- Support for various data types (string, number, boolean, object, array)

Note: Requires Node.js/npm installation to run (see FRONTEND_SETUP.md)
TIER 4 task 2/4 complete
2026-02-01 11:40:17 +01:00
..
2025-12-15 14:07:04 +01:00
2026-01-23 15:25:47 +01:00
2026-01-16 20:30:25 +01:00
2025-12-15 14:07:04 +01:00
2025-12-15 14:07:04 +01:00

Aniworld Documentation

Overview

This directory contains all documentation for the Aniworld anime download manager project.

Documentation Structure

Document Purpose Target Audience
ARCHITECTURE.md System architecture and design decisions Architects, Senior Developers
API.md REST API reference and WebSocket documentation Frontend Developers, API Consumers
DEVELOPMENT.md Developer setup and contribution guide All Developers
DEPLOYMENT.md Deployment and operations guide DevOps, System Administrators
DATABASE.md Database schema and data models Backend Developers
TESTING.md Testing strategy and guidelines QA Engineers, Developers
SECURITY.md Security considerations and guidelines Security Engineers, All Developers
CONFIGURATION.md Configuration options reference Operators, Developers
CHANGELOG.md Version history and changes All Stakeholders
TROUBLESHOOTING.md Common issues and solutions Support, Operators
features.md Feature list and capabilities Product Owners, Users
instructions.md AI agent development instructions AI Agents, Developers

Documentation Standards

  • All documentation uses Markdown format
  • Keep documentation up-to-date with code changes
  • Include code examples where applicable
  • Use clear, concise language
  • Include diagrams for complex concepts (use Mermaid syntax)

Contributing to Documentation

When adding or updating documentation:

  1. Follow the established format in each document
  2. Update the README.md if adding new documents
  3. Ensure cross-references are valid
  4. Review for spelling and grammar