Skip to content

Commit 01d03f1

Browse files
committed
test(runtime): update protocol v5 expectations
1 parent 99df817 commit 01d03f1

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

packages/runtime/tests/python-bridge-base-coverage.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,8 @@ describe("PythonBridgeBase — execute", () => {
330330
node_type: "n.T",
331331
fields: { a: 1 },
332332
secrets: { KEY: "v" },
333-
blobs: {}
333+
blobs: {},
334+
blob_transfer: "chunked-v1"
334335
});
335336
bridge.handle({
336337
type: "result",

packages/runtime/tests/python-bridge-models.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import {
1919
import type { ModelDownloadUpdate } from "../src/python-bridge-types.js";
2020

2121
describe("bridge protocol version", () => {
22-
it("is 4 (models.* + comfy.* + run identity/job.* support)", () => {
23-
expect(BRIDGE_PROTOCOL_VERSION).toBe(4);
22+
it("is 5 (chunked result blobs)", () => {
23+
expect(BRIDGE_PROTOCOL_VERSION).toBe(5);
2424
});
2525
});
2626

0 commit comments

Comments
 (0)