mirror of
https://github.com/denoland/deno.git
synced 2025-02-01 20:25:12 -05:00
0e47205ebe
This PR resolves 2 issues of Socket class of node compat (both are related to playwright) Currently `browser.launch()` of playwright is not working. `browser.launch` opens PipeTransport (which is based on Pipe/IPC socket) with the browser process. But that pipe doesn't start reading the data because of the workaround #27662 (which pauses the socket at the beginning if it's from playwright-core). This PR fixes this issue by checking whether the given handle is `ipc` handle or not. Another issue is that sock-init-workaround for TLS connection stopped working at #27707 because of the changes of TLS socket initialization steps. This change fixes the issue by correctly returning the function in workaround path. The added case `specs::npm::playwright_compat` checks both fixes with actual playwright and playwright-core packages. `browser.launch` issues closes #16899 closes #27623 `https.request` issue closes #27658
41 lines
635 B
Text
41 lines
635 B
Text
*.orig
|
|
*.pyc
|
|
*.swp
|
|
.env
|
|
|
|
/.cargo_home/
|
|
/.idea/
|
|
/.vs/
|
|
/.vscode/
|
|
gclient_config.py_entries
|
|
/target/
|
|
/std/hash/_wasm/target
|
|
/tests/wpt/runner/manifest.json
|
|
/third_party/
|
|
/tests/napi/node_modules
|
|
/tests/napi/build
|
|
/tests/napi/third_party_tests/node_modules
|
|
|
|
# MacOS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
|
|
# Flamegraphs
|
|
/flamebench*.svg
|
|
/flamegraph*.svg
|
|
|
|
# WPT generated cert files
|
|
/tests/wpt/runner/certs/index.txt*
|
|
/tests/wpt/runner/certs/serial*
|
|
|
|
/ext/websocket/autobahn/reports
|
|
|
|
# JUnit files produced by deno test --junit
|
|
junit.xml
|
|
|
|
# Jupyter files
|
|
.ipynb_checkpoints/
|
|
Untitled*.ipynb
|
|
|
|
# playwright browser binary cache
|
|
/.ms-playwright
|