We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Parcel watcher (Parcel.watch()) seems to end before server is actualy ready.
Parcel.watch()
const port = 1234; const bundler = new Parcel({ entries: "./index.html", defaultConfig: "@parcel/config-default", serveOptions: { port }, }); await bundler.watch();
reproduction steps: microsoft/playwright#35879 (comment)
Package.json : https://github.com/testndev/bugs-report-reproduction/blob/main/package.json
Parcel should return the hand at least with server up.
Parcel returns the hand even if server is not ready yet.
Requesting the server just after the end of bundler.watch() returns a net::ERR_CONNECTION_REFUSED error with Playwright for example.
bundler.watch()
net::ERR_CONNECTION_REFUSED
page.goto: net::ERR_CONNECTION_REFUSED at http://localhost:1234/
note: frequent but not systematic behavior.
The bug was first open at Playwright: microsoft/playwright#35879
I have some scripts (with Playwright) that request a web app served by Parcel.
For example to take a PDF snapshot of "functional test coverage page".
See : https://github.com/testndev/bugs-report-reproduction
2.14.4
2.15.0
23.11.0
10.9.2
See also: microsoft/playwright#35879
The text was updated successfully, but these errors were encountered:
No branches or pull requests
🐛 bug report
Parcel watcher (
Parcel.watch()
) seems to end before server is actualy ready.🎛 Configuration
reproduction steps: microsoft/playwright#35879 (comment)
Package.json : https://github.com/testndev/bugs-report-reproduction/blob/main/package.json
🤔 Expected Behavior
Parcel should return the hand at least with server up.
😯 Current Behavior
Parcel returns the hand even if server is not ready yet.
Requesting the server just after the end of
bundler.watch()
returns anet::ERR_CONNECTION_REFUSED
error with Playwright for example.🔦 Context
The bug was first open at Playwright: microsoft/playwright#35879
I have some scripts (with Playwright) that request a web app served by Parcel.
For example to take a PDF snapshot of "functional test coverage page".
💻 Code Sample
See : https://github.com/testndev/bugs-report-reproduction
🌍 Your Environment
2.14.4
&2.15.0
23.11.0
10.9.2
See also: microsoft/playwright#35879
The text was updated successfully, but these errors were encountered: