From 56155e5048a250ed2d75e1f6c485b51597eabfeb Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Thu, 30 Apr 2026 05:04:45 +0100 Subject: [PATCH] test: accept kitchen sink conformance diagnostics --- scripts/e2e/lib/kitchen-sink-plugin/assertions.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/e2e/lib/kitchen-sink-plugin/assertions.mjs b/scripts/e2e/lib/kitchen-sink-plugin/assertions.mjs index f2bcc3278cd..a4d1277d8c6 100644 --- a/scripts/e2e/lib/kitchen-sink-plugin/assertions.mjs +++ b/scripts/e2e/lib/kitchen-sink-plugin/assertions.mjs @@ -146,7 +146,7 @@ function assertExpectedDiagnostics(surfaceMode, errorMessages) { "plugin must own memory slot or declare contracts.memoryEmbeddingProviders for adapter: kitchen-sink-memory-embedding-provider", "memory prompt supplement registration missing builder", ]); - if (surfaceMode !== "full" && surfaceMode !== "adversarial") { + if (surfaceMode !== "full" && surfaceMode !== "conformance" && surfaceMode !== "adversarial") { if (errorMessages.size > 0) { throw new Error( `unexpected kitchen-sink diagnostic errors: ${[...errorMessages].join(", ")}`,