Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generator functions? #4

Open
denchen opened this issue Jan 25, 2018 · 1 comment
Open

Generator functions? #4

denchen opened this issue Jan 25, 2018 · 1 comment

Comments

@denchen
Copy link

denchen commented Jan 25, 2018

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;
  }
@knee-cola
Copy link
Owner

As of yet generator functions are not supported. If you wish, you can implement this yourself ... make a pull request ;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants