-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Description
Does this library work with generator functions? And if so, can I get an example on how to write a test case for it?
Let's say the generator function is very basic, such as:
export function* testApi(url) {
try {
return yield axios.get(url);
} catch(error) {
console.log('ERROR:', error);
throw error;
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels