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)

View File

@@ -123,7 +123,7 @@ const knownDeprecatedSurfaceMarkers = [
{
code: "bundled-channel-config-schema-legacy",
file: "src/plugin-sdk/channel-config-schema-legacy.ts",
marker: "Deprecated bundled-channel compatibility surface",
marker: "Compatibility surface for bundled channel schemas",
},
{
code: "plugin-sdk-testing-barrel",