Surface polish: batched Minor findings from the native-surfaces final review (#71) (#75)

This commit was merged in pull request #75.
This commit is contained in:
2026-07-03 03:20:23 +00:00
parent a90cc06dfa
commit 3e7ad58247
6 changed files with 372 additions and 22 deletions
+1 -1
View File
@@ -126,7 +126,7 @@ suite("Open Cowriting Review Preview (host E2E — menu wiring + clicked-doc res
const items = (pkg().contributes.menus["editor/title"] ?? []) as Array<{ command: string; when?: string }>;
const entry = items.find((m) => m.command === "cowriting.openReviewPreview");
assert.ok(entry, "editor/title has an openReviewPreview entry");
assert.match(entry!.when ?? "", /editorLangId == markdown/, "gated on markdown");
assert.match(entry!.when ?? "", /resourceLangId == markdown/, "gated on markdown");
});
test("the command title reads 'Open Cowriting Review Preview'", () => {