DeepFrontend
Learning Paths
Practice
System Design & DS
Design Studio
Data Structures Curriculum
Real-World Case Studies
Careers
Job Board
Resume Builder
Blog
Sign in
Search
⌘K
Go Pro
Loading compiler resources...
Redux Ecosystem Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
medium
Redux Ecosystem
What makes it possible to test a saga's success path via gen.next(value), confirmed by direct execution?
A
A special saga-testing library is required
B
gen.next(value) manually supplies the value the real async call would have resolved to, letting the test control the result without the real function ever being invoked
C
The real function is automatically mocked by redux-saga
D
Sagas cannot be tested without a running store
Check Answer