Skip to content

Commit d43c45a

Browse files
committed
fix test
1 parent 457643b commit d43c45a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

typescript-sdk/packages/client/src/run/__tests__/http-request.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ describe("runHttpRequest", () => {
3434
mockHeaders.append("Content-Type", "application/json");
3535

3636
const mockResponse = {
37+
ok: true,
3738
status: 200,
3839
headers: mockHeaders,
3940
body: {
@@ -90,6 +91,7 @@ describe("runHttpRequest", () => {
9091
mockHeaders.append("Content-Type", "application/json");
9192

9293
const mockResponse = {
94+
ok: true,
9395
status: 200,
9496
headers: mockHeaders,
9597
body: {
@@ -142,6 +144,7 @@ describe("runHttpRequest", () => {
142144
mockHeaders.append("Content-Type", "application/json");
143145

144146
const mockResponse = {
147+
ok: true,
145148
status: 200,
146149
headers: mockHeaders,
147150
body: {

0 commit comments

Comments
 (0)