-
Notifications
You must be signed in to change notification settings - Fork 8
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
Disable highlight & fix some other tests. #59
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
PR Type
tests, enhancement
Description
supportsUrl
andsupportsContract
methods in theHighlightIngestor
class by returning false and commented out the existing logic.symbol
field from the GraphQL query inoffchain-metadata.ts
.foundation.test.ts
to expectpriceWei
to be '0' due to changes in the API response.highlight
test suite inhighlight.test.ts
.rarible.test.ts
for consistency and clarity.Changes walkthrough 📝
index.ts
Disable URL and contract support in HighlightIngestor
src/ingestors/highlight/index.ts
supportsUrl
andsupportsContract
methods by returningfalse.
offchain-metadata.ts
Remove symbol field from GraphQL query
src/ingestors/highlight/offchain-metadata.ts
symbol
field from the GraphQL query.foundation.test.ts
Update foundation test for priceWei expectation
test/ingestors/foundation.test.ts
highlight.test.ts
Skip highlight test suite
test/ingestors/highlight.test.ts
rarible.test.ts
Reformat and update Rarible test suite
test/ingestors/rarible.test.ts
README.md
Update Base platform status to Failing
README.md
section.