Conversation
- Added `.mcp.json` to configure Aspire MCP servers with command and arguments. - Introduced `.playwright/cli.config.json` to define browser launch settings for Playwright (Chromium, Edge channel).
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 41b426015c
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| "browser": { | ||
| "browserName": "chromium", | ||
| "launchOptions": { | ||
| "channel": "msedge" |
There was a problem hiding this comment.
Remove hard dependency on Edge channel in Playwright config
Setting launchOptions.channel to msedge forces playwright-cli to launch the system Edge binary instead of Playwright’s bundled Chromium. On Linux/CI/dev containers where Edge is not installed, browser startup fails immediately, so the new tooling config is unusable out of the box. Prefer leaving channel unset (or making it environment-specific) so default Chromium works everywhere.
Useful? React with 👍 / 👎.
.mcp.jsonto configure Aspire MCP servers with command and arguments..playwright/cli.config.jsonto define browser launch settings for Playwright (Chromium, Edge channel).