-
Notifications
You must be signed in to change notification settings - Fork 5.1k
fix(trace viewer): make paths via stdin work #39121
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
| host?: string; | ||
| port?: number; | ||
| isServer?: boolean; | ||
| stdin?: Readable; |
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.
This can be imported via playwright-core/server. I suspect we only have it for testing purposes, and it's not part of our public API to anyone.
This comment has been minimized.
This comment has been minimized.
f3d48f9 to
d5a793c
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
d5a793c to
d014f93
Compare
This comment has been minimized.
This comment has been minimized.
tests/config/traceViewerFixtures.ts
Outdated
| }); | ||
| }, | ||
|
|
||
| startTraceViewer: async ({ context, childProcess }, use) => { |
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.
Naming is hard! I will not be able to figure whether to startTraceViewer or showTraceViewer later on. Perhaps inline this fixture into the test for now?
This comment has been minimized.
This comment has been minimized.
Co-authored-by: li-zhixin <cruz.liu@developertools.com>
d014f93 to
5fe219f
Compare
Test results for "tests 1"4 failed 6 flaky34215 passed, 756 skipped Merge workflow run. |
Test results for "MCP"4649 passed, 135 skipped Merge workflow run. |
Co-authored-by: li-zhixin <cruz.liu@developertools.com>
Closes #39096, which is a regression from #38566. The fix is exactly what @li-zhixin outlines, thanks!