mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-11 05:30:03 -05:00
`app.quality === Quality.Dev` is not a precise "running from source" signal: `parseQuality()` also returns `Quality.Dev` for a `--build` product when `VSCODE_QUALITY` is unset, which would wrongly hard-fail a packaged build that legitimately lacks Codex. Use `process.env.VSCODE_DEV === '1'` instead — the smoke runner sets it deterministically only in the no-`--build` (dev electron) branch, mirroring the agent host's `isBuilt === false` that gates the node_modules fallback. This matches existing dev-detection in main.ts and the diagnostics already logged in this file. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
VS Code Tests
Contents
This folder contains the various test runners for VS Code. Please refer to the documentation within for how to run them: