Files
vscode/test
Giuseppe Cianci ea6bc378f9 smoke: use VSCODE_DEV (not Quality.Dev) to detect from-source Codex run
`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>
2026-06-22 16:21:56 +02:00
..
2026-06-17 19:10:01 +02:00

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:

  • unit: our suite of unit tests (README)
  • integration: our suite of API tests (README)
  • smoke: our suite of automated UI tests (README)
  • sanity: release sanity tests (README)