React Guideline: Testing — Test behavior not implementation. Description: Test what user sees and does. Do: Test renders and interactions. Don't: Test internal state or methods. Good Example: expect(screen.getByText('Hello')). Bad Example: expect(component.state.name). Severity: Medium. Docs: https://testing-library.com/docs/react-testing-library/intro/.