-
-
Notifications
You must be signed in to change notification settings - Fork 13
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
Fix unit tests #27
Fix unit tests #27
Conversation
Notice how tests are failing for #26 at the moment. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is better than failing tests, but it's still not great to be hitting Infura in unit tests 😬. What would it take to replace this with ganache
instead? We'd probably need to deploy this method registry contract I'm guessing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
The unit tests make requests to Infura. This package was using the deprecated (removed?) Infura v1 API. This PR adds the
rc
dependency such that developers can add their Infura API keys for tests. It also adds the creation of anrc
file for CI.