Basic
Learn about basic in fp-ts taskeither
Code Editor
01-basic.exercise.ts
💻
Loading editor...
Preparing Monaco Editor with TypeScript support
Test Results
Requirements
describe('TaskEither basics', () => {
it('creates successful TaskEither', async () => {
const result = await successfulTask()()
expect(result._tag).toBe('Right')
if (result._tag === 'Right') {
expect(result.right).toBe(42)
}
})
it('creates failed TaskEither', async () => {
const result = await failedTask()()
expect(result._tag).toBe('Left')
if (result._tag === 'Left') {
expect(result.left).toBe('Something went wrong')
}
})
})🧪
Ready to Test?
Click "Run Tests" to see how your code performs
Quick Tips
•Read the TODO comments in the code
•Use Reset to restore original code
•Check Solution if stuck
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