Skip to content

Commit 804fe3b

Browse files
committed
test(stack): pin that containment needles carry no version envelope
The suite header documents the wire contract as a strict {sv: [...]} with no version field, but assertContainmentNeedle only rejected ciphertext — a regression reintroducing the v envelope would have passed. One-line pin from CodeRabbit's review. Claude-Session: https://claude.ai/code/session_01MxTTPaPP16m6br7Hoab94w
1 parent a2cb138 commit 804fe3b

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

e2e/wasm/query-types.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ function assertContainmentNeedle(term: unknown, label: string) {
9090
`${label}: expected an {sv: [...]} containment needle`,
9191
)
9292
assertEquals('c' in obj, false, `${label}: needle carries ciphertext`)
93+
assertEquals('v' in obj, false, `${label}: needle carries a version envelope`)
9394
}
9495

9596
Deno.test({

0 commit comments

Comments
 (0)