@teamkeel/functions-runtime 0.389.4 → 0.389.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamkeel/functions-runtime",
3
- "version": "0.389.4",
3
+ "version": "0.389.5",
4
4
  "description": "Internal package used by @teamkeel/sdk",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -96,12 +96,12 @@ test("fetch - 200", async () => {
96
96
  });
97
97
 
98
98
  test("fetch - 404", async () => {
99
- await fetch("http://example.com/movies.json");
99
+ await fetch("https://keel.so/not-found");
100
100
 
101
101
  expect(spanEvents.map((e) => e.event)).toEqual(["onStart", "onEnd"]);
102
102
  expect(spanEvents.pop().span.attributes).toEqual({
103
- "http.url": "http://example.com/movies.json",
104
- "http.scheme": "http",
103
+ "http.url": "https://keel.so/not-found",
104
+ "http.scheme": "https",
105
105
  "http.method": "GET",
106
106
  "http.status": 404,
107
107
  "http.status_text": "Not Found",