Vue Guideline: Testing — Test component behavior. Description: Focus on inputs and outputs. Do: Test props emit and rendered output. Don't: Test internal implementation. Good Example: expect(wrapper.text()).toContain(). Bad Example: expect(wrapper.vm.internalState). Severity: Medium. Docs: .