Skip to content

Commit ecc02fe

Browse files
Vonngclaude
andcommitted
test(palette): the version pins follow the release to v0.8.0
The palette characterization asserts the version entry's label three times; the pin push moved the site to v0.8.0 and the spec had not followed, which only CI noticed because the local matrix last ran before the pin. All nine palette scenarios pass against the rebuilt site. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent c8521b8 commit ecc02fe

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/browser/command-palette.spec.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ test("empty Palette exposes shared quick links, page actions, and preferences",
7474
const preferences = group(dialog, "Preferences");
7575
await expect(preferences).toContainText("Toggle color theme");
7676
await expect(preferences).toContainText("Switch language");
77-
await expect(preferences).toContainText("v0.7.1");
77+
await expect(preferences).toContainText("v0.8.0");
7878
const commands = group(dialog, "Commands");
7979
await expect(commands).toContainText("OINK issues");
8080
await expect(commands).not.toContainText("Copy Markdown");
@@ -217,9 +217,9 @@ test("built-in choice actions reuse theme, language, and version executors", asy
217217
await page.keyboard.press(
218218
process.platform === "darwin" ? "Meta+k" : "Control+k",
219219
);
220-
await fillCommandAndWait(input, dialog, "> version", "v0.7.1");
220+
await fillCommandAndWait(input, dialog, "> version", "v0.8.0");
221221
await page.keyboard.press("Enter");
222-
await expect(dialog).toContainText("v0.7.1");
222+
await expect(dialog).toContainText("v0.8.0");
223223
});
224224

225225
test("Copy Markdown executes once through the shared registry", async ({

0 commit comments

Comments
 (0)