What problem does it solve? Developers working in the order-ui codebase often lack a consistent approach to writing tests, leading to inconsistent file placement, missing coverage of critical logic, and uncertainty about which testing patterns to apply for hooks, stores, or API services. ## Core Features & Use Cases - Standardized Test Conventions: Enforces co-located test files in __tests__/ folders with consistent naming (<source-file>.test.ts(x)). - Pattern Library: Provides ready-to-use Arrange/Act/Assert templates for API services (mocked http), React Query hooks (QueryClientProvider wrapper), Zustand stores, components, and Zod schemas. - Scope Guidance: Clarifies what to test (API services, hooks, stores, critical interactions, schemas) and what to skip (Radix/shadcn primitives, type-only files). - Use Case: When adding a new use-printer hook, follow the hook test pattern to mock the API layer, wrap with QueryClientProvider, and assert on query state transitions. ## Quick Start Ask the assistant to write a test for a specific component, hook, store, or API service following the project's TDD workflow conventions.