M15: synchronize contracts and acceptance
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user