test(codex): satisfy bundled app-server lint

This commit is contained in:
Vincent Koc
2026-04-28 22:55:18 -07:00
parent 213f92a9ef
commit b62e9e624d

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]) => calledMethod);
const mockMethods = request.mock.calls.map((call) => call[0]);
throw new Error(
`expected app-server method ${method}; saw ${requests
.map((entry) => entry.method)