test(adapter-utils): use binary HTTP/2 response body
This commit is contained in:
parent
ecb166a152
commit
194ae17249
|
|
@ -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"),
|
||||
};
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue