description: Our project's testing practices and conventions
triggers: [test, testing, jest, spec]
keywords: [jest, unit-test, integration-test, mocking]
Jest + @testing-library/react
- 命名:`[Component].test.tsx`
1. **Arrange(准备)**:设置测试数据
describe('validateEmail', () => {
it('should accept valid email addresses', () => {
const email = 'user@example.com';
const result = validateEmail(email);
expect(result).toBe(true);