M15: synchronize contracts and acceptance

This commit is contained in:
NuklearRabbit
2026-08-10 05:39:19 +02:00
parent 58fb515337
commit 2ee8b2d82b
38 changed files with 5091 additions and 1727 deletions
+4 -2
View File
@@ -25,9 +25,11 @@ test("control-centre shell exposes landmarks, persisted readiness and active nav
});
test("global search supports its keyboard shortcut and finds a vehicle by reference", async ({ page }) => {
await page.keyboard.press("Control+k");
const search = page.getByRole("combobox", { name: "Search Fleet Ops" });
await expect(search).toBeFocused();
await expect(async () => {
await page.keyboard.press("Control+k");
await expect(search).toBeFocused();
}).toPass({ timeout: 5_000 });
await search.fill("MO-024");
const result = page.getByRole("option", { name: /MO-024/ });
await expect(result).toBeVisible();