test(adapter-utils): keep queue response body textual

This commit is contained in:
Michel Tomas 2026-09-13 12:36:19 +02:00
parent 194ae17249
commit 2b67242541
1 changed files with 2 additions and 2 deletions

View File

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