M30: record production recruiter acceptance
MobilityOps acceptance / backend (push) Canceled after 0s
MobilityOps acceptance / frontend (push) Canceled after 0s

This commit is contained in:
NuklearRabbit
2026-08-10 18:32:30 +02:00
parent 29325b6c27
commit cfffb1ce54
7 changed files with 75 additions and 60 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ test("five-minute demo script end to end", async ({ page, request }) => {
.fill("Wat moet ik doen wanneer een voertuig terugkomt met schade?");
await page.getByRole("button", { name: "Vraag stellen" }).click();
await expect(page.getByText("Onderbouwd met geciteerde procedures")).toBeVisible({ timeout: 15_000 });
const damageSource = page.locator(".source-card", { hasText: /damage-procedure\.md|Procedure schadeafhandeling/ }).first();
const damageSource = page.locator(".source-card", { hasText: /zichtbare of gemelde schade/i }).first();
await expect(damageSource).toBeVisible();
await expect(damageSource).toContainText(/zichtbare of gemelde schade/i);
});
+1 -1
View File
@@ -260,7 +260,7 @@ test.describe("knowledge base is grounded in the operator's own language", () =>
await page.getByRole("button", { name: /^(Vraag stellen|Ask|Demander)$/ }).click();
const localizedSource = page.locator(".source-card", { hasText: sourceHint }).first();
await expect(localizedSource).toBeVisible({ timeout: 15_000 });
await expect(localizedSource).toContainText(/damage-procedure\.md|Damage handling|schadeafhandeling|gestion des dommages/i);
await expect(localizedSource).toContainText(/Schade bij voertuigretour|Vehicle return damage|Dommages au retour du véhicule/i);
});
}
});