test(ci): fix current validation shards

This commit is contained in:
Peter Steinberger
2026-04-29 06:48:56 +01:00
parent ade863e08f
commit cfcb8f4eda
2 changed files with 2 additions and 2 deletions

View File

@@ -173,7 +173,7 @@ function createAppServerHarness(
await vi.waitFor(
() => {
if (!requests.some((entry) => entry.method === method)) {
const mockMethods = request.mock.calls.map(([calledMethod]) => String(calledMethod));
const mockMethods = request.mock.calls.map(([calledMethod]) => calledMethod);
throw new Error(
`expected app-server method ${method}; saw ${requests
.map((entry) => entry.method)