fix: omit readiness request logs

This commit is contained in:
2026-07-18 14:15:23 +02:00
parent 5808355b46
commit a05975dec5
2 changed files with 7 additions and 0 deletions
@@ -119,6 +119,12 @@ test("invalid webhook signatures are rejected without persistence", async () =>
},
);
assert.ok((requests[0]?.durationMs ?? -1) >= 0);
const readiness = await fetch(
`http://127.0.0.1:${address.port}/readyz`,
);
assert.equal(readiness.status, 200);
assert.equal(requests.length, 1);
} finally {
await new Promise<void>((resolve) => server.close(() => resolve()));
store.close();