chore(vscode): VS Code extension synthetics (initial pass) - #9519
Open
Andrew Eldridge (andrew-eldridge) wants to merge 1 commit into
Open
chore(vscode): VS Code extension synthetics (initial pass)#9519Andrew Eldridge (andrew-eldridge) wants to merge 1 commit into
Andrew Eldridge (andrew-eldridge) wants to merge 1 commit into
Conversation
Andrew Eldridge (andrew-eldridge)
requested a review
from Brian Lam (lambrianmsft)
August 10, 2026 20:13
Contributor
🤖 AI PR Validation ReportPR Review ResultsThank you for your submission! Here's detailed feedback on your PR title and body compliance:✅ PR Title
✅ Commit Type
✅ Risk Level
❌ What & Why
✅ Impact of Change
✅ Test Plan
✅ Contributors
✅ Screenshots/Videos
Summary Table
Almost there — the only blocker is the empty "What & Why" section. Add a brief description of what changed and why, and this PR will pass.Powered by: Copilot CLI (claude-opus-4.8) | Last updated: Wed, 12 Aug 2026 19:11:26 GMT |
Contributor
📊 Coverage CheckNo source files changed in this PR. |
Andrew Eldridge (andrew-eldridge)
marked this pull request as ready for review
August 12, 2026 17:36
Copilot started reviewing on behalf of
Andrew Eldridge (andrew-eldridge)
August 12, 2026 17:36
View session
Contributor
There was a problem hiding this comment.
Pull request overview
Adds scheduled VS Code synthetic tests for the published marketplace extension using the existing ExTester harness.
Changes:
- Adds marketplace/source extension selection and installation.
- Adds scheduled activation and designer smoke tests.
- Uploads failure screenshots and run metadata.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
apps/vs-code-designer/src/test/ui/run-e2e.ts |
Supports marketplace extension installation. |
.github/workflows/vscode-e2e-synthetics.yml |
Defines scheduled and manual synthetic runs. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+151
to
+152
| echo "- **VSIX Source**: ${{ inputs.vsix_source || 'marketplace' }}" >> $GITHUB_STEP_SUMMARY | ||
| echo "- **Run Time**: $(date -u +'%Y-%m-%d %H:%M UTC')" >> $GITHUB_STEP_SUMMARY |
Comment on lines
+672
to
+677
| // Read extension metadata from package.json. | ||
| // In marketplace mode, dist/ may not exist — fall back to the project-level package.json. | ||
| const distPkgPath = path.join(distDir, 'package.json'); | ||
| const projectPkgPath = path.join(projectDir, 'package.json'); | ||
| const pkgJsonPath = fs.existsSync(distPkgPath) ? distPkgPath : projectPkgPath; | ||
| const pkgJson = JSON.parse(fs.readFileSync(pkgJsonPath, 'utf8')); |
Brian Lam (lambrianmsft)
approved these changes
Aug 12, 2026
This was referenced Aug 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Commit Type
Risk Level
What & Why
Impact of Change
Test Plan
Contributors
Andrew Eldridge (@andrew-eldridge), Brian Lam (@lambrianmsft)