Review fixes: plain depends_on merge, positive secret assertion
CI / full-gate (push) Successful in 2m46s
Mirror / github-mirror (push) Successful in 5s

This commit was merged in pull request #39.
This commit is contained in:
2026-08-02 16:10:35 +02:00
parent f5f4455b81
commit 0919adf4ef
3 changed files with 11 additions and 20 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ test.describe.serial("authenticated admin journey", () => {
await expect(page.locator("h1")).toHaveText("Client registered");
const clientId = await page.locator("#cid").inputValue();
expect(clientId).toBeTruthy();
await expect(page.locator("#csecret")).not.toHaveValue("");
await expect(page.locator("#csecret")).toHaveValue(/.+/);
// Listed; the row header links to the plain detail, which never shows the secret again.
await page.goto("/admin/clients");