Skip to content

Commit 12c1af0

Browse files
committed
fix
1 parent baede93 commit 12c1af0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/e2e/helpers/api/api-common.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ export async function sendGetRequest(resourcePath: string): Promise<any> {
1818
if (await windowId) {
1919
requestEndpoint.set('X-Window-Id', await windowId);
2020
}
21+
22+
return requestEndpoint;
2123
}
2224

2325
/**
@@ -40,6 +42,7 @@ export async function sendPostRequest(
4042
if (await windowId) {
4143
requestEndpoint.set('X-Window-Id', await windowId);
4244
}
45+
return requestEndpoint;
4346
}
4447

4548
/**
@@ -62,4 +65,6 @@ export async function sendDeleteRequest(
6265
if (await windowId) {
6366
requestEndpoint.set('X-Window-Id', await windowId);
6467
}
68+
69+
return requestEndpoint;
6570
}

0 commit comments

Comments
 (0)