Skip to content

Commit 8697c92

Browse files
authored
fix: forward driver stderr to main stderr (microsoft#145)
1 parent 49b691a commit 8697c92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playwright/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ async def run_driver_async() -> Connection:
4949
str(driver_executable),
5050
stdin=asyncio.subprocess.PIPE,
5151
stdout=asyncio.subprocess.PIPE,
52-
stderr=asyncio.subprocess.PIPE,
52+
stderr=sys.stderr,
5353
limit=32768,
5454
)
5555
assert proc.stdout

0 commit comments

Comments
 (0)