test(adapter-utils): use binary HTTP/2 response body

This commit is contained in:
Michel Tomas 2026-09-13 12:33:53 +02:00
parent ecb166a152
commit 194ae17249
1 changed files with 1 additions and 1 deletions

View File

@ -605,7 +605,7 @@ describe("sandbox callback bridge", () => {
return {
status: 200,
headers: { "content-type": "application/json" },
body: JSON.stringify({ ok: true }),
body: Buffer.from(JSON.stringify({ ok: true }), "utf8"),
};
},
});