From 182e6a28ccc20035cb22c7246fbd67c6e0909c65 Mon Sep 17 00:00:00 2001 From: Tianyi Cui <53024+tianyicui@users.noreply.github.com> Date: Thu, 23 Jul 2026 03:09:13 +0800 Subject: [PATCH] test(code-runtime): cover malformed key markers --- .../code-runtime/code-runtime-worker/tests/worker-json.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/code-runtime/code-runtime-worker/tests/worker-json.spec.ts b/packages/code-runtime/code-runtime-worker/tests/worker-json.spec.ts index e0c8310a6a..6ef8d30a09 100644 --- a/packages/code-runtime/code-runtime-worker/tests/worker-json.spec.ts +++ b/packages/code-runtime/code-runtime-worker/tests/worker-json.spec.ts @@ -230,6 +230,7 @@ describe('flat worker JSON wire', () => { [foreignMarker], [hiddenMarker], [{ kind: 'unknown' }], + [{ kind: 'array', bogus: 0 }], [{ kind: 'array' }], [{ kind: 'array', length: '1' }], [{ kind: 'array', length: -1 }],