-
Notifications
You must be signed in to change notification settings - Fork 702
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
[wrangler] test: fix E2E tests #4907
Merged
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
a4215e9
ci: ensure E2E tests failures not reported as successes
mrbbot f532eb8
test: remove redundant `deploy.test.ts` E2E test
mrbbot 2283d81
test: remove standard pricing warning from E2E test output
mrbbot c6e3dde
test: update format of writing logs message in E2E tests
mrbbot 9de08d7
test: use `fallback` instead of `default` in E2E tests
mrbbot 970d659
fix: ensure `--log-level` argument applied immediately
mrbbot bc423c9
test: improve reliability of `dev.test.ts` E2E test
mrbbot bef4ac4
fix: throw `UserError`s for R2 object/bucket not-found errors
mrbbot 47f1f0c
global install
penalosa 6fae44d
Ensure internal workers listen on ipv4 only
penalosa 57480ea
shorter timeouts
penalosa d9a3654
lock
penalosa f6e8616
lockfile
penalosa 00eaa3f
[squash] r2
penalosa e8bb9b3
[squash] r2 logging
penalosa 92c88f6
ls
penalosa 1164b08
windows
penalosa 81b9762
all tests
penalosa d2390dc
dev
penalosa 63ab5e5
only
penalosa 0a22759
devalue
penalosa cc604b0
log
penalosa ce4a7f8
logging
penalosa 98e1bd5
Cleanup
penalosa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
cc @Lekensteyn
We had to fix this because checking via
localhost
for port 9229 could say that it was available twice - once for127.0.0.1
and again for::1
, which mean that we ended up with two Wrangler sessions that both tried to start workerd on127.0.0.1:9229
; the second of which would fail.