diff --git a/examples/tests/sdk_tests/external/http.js b/examples/tests/sdk_tests/external/http.js deleted file mode 100644 index 4c88eb2bebe..00000000000 --- a/examples/tests/sdk_tests/external/http.js +++ /dev/null @@ -1,11 +0,0 @@ -exports.http = async function (url, options = {}) { - const res = await fetch(url.toString(), options); - return { - status: res.status, - headers: [...res.headers.entries()].map(([key, value]) => ({ - key, - value, - })), - body: await res.text(), - }; -};