-
Notifications
You must be signed in to change notification settings - Fork 619
fix: unstoppable domains test #5389
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
Conversation
|
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Your org has enabled the Graphite merge queue for merging into mainAdd the label “merge-queue” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. Or use the label “hotfix” to add to the merge queue as a hot fix. You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link. |
Merge activity
|
size-limit report 📦
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #5389 +/- ##
==========================================
- Coverage 45.33% 45.32% -0.01%
==========================================
Files 1067 1067
Lines 55405 55405
Branches 4001 4001
==========================================
- Hits 25116 25111 -5
- Misses 29602 29607 +5
Partials 687 687
*This pull request uses carry forward flags. Click here to find out more. |
## Problem solved
Short description of the bug fixed or feature added
<!-- start pr-codex -->
---
## PR-Codex overview
This PR modifies the test suite for resolving addresses with `Unstoppable Domain`. It updates the test structure to conditionally run based on the presence of `TW_SECRET_KEY` and retains the existing test logic.
### Detailed summary
- Changed `describe` to conditionally run with `describe.runIf(process.env.TW_SECRET_KEY)`.
- Retained the test for resolving a valid address.
- Retained the test for handling a non-existent domain name.
> ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}`
<!-- end pr-codex -->
a223673 to
512eeb5
Compare
Problem solved
Short description of the bug fixed or feature added
PR-Codex overview
This PR updates the test suite for resolving addresses using
Unstoppable Domains. It modifies the test structure to conditionally run the tests based on the presence ofTW_SECRET_KEY.Detailed summary
describetodescribe.runIf(process.env.TW_SECRET_KEY)to conditionally run the tests.