Nested

intermediate6 of 7

Learn about nested in fp-ts validation

Code Editor

06-nested.exercise.ts

💻
Loading editor...
Preparing Monaco Editor with TypeScript support

Test Results

Requirements

describe('Nested validation', () => {
  it('validates complete person with address', () => {
    const person = {
      name: 'Alice',
      address: { street: '123 Main St', city: 'Boston', zipCode: '02101' },
    }
    const result = validatePerson(person)
    expect(result._tag).toBe('Right')
  })

  it('accumulates errors from all levels', () => {
    const person = {
      name: '',
      address: { street: '', city: '', zipCode: '123' },
    }
    const result = validatePerson(person)
    expect(result._tag).toBe('Left')
    if (result._tag === 'Left') {
      expect(result.left.length).toBeGreaterThan(2) // Errors from both person and address
    }
  })
})
🧪

Ready to Test?

Click "Run Tests" to see how your code performs

Pro Tips

💡 Stuck? Here's what to try:

  • • Read the comments in the code carefully
  • • Run tests frequently to get feedback
  • • Check the fp-ts documentation
  • • Use the solution if you need help

🚀 Learning Approach:

  • • Focus on understanding, not just solving
  • • Experiment with different approaches
  • • Think about real-world applications
  • • Build on previous exercises