(body: Record<string, unknown>)
| 23 | } |
| 24 | |
| 25 | async function runtime(body: Record<string, unknown>) { |
| 26 | return SELF.fetch("https://example.test/runtime", { |
| 27 | method: "POST", |
| 28 | headers: { "content-type": "application/json" }, |
| 29 | body: JSON.stringify(body), |
| 30 | }); |
| 31 | } |
| 32 | |
| 33 | describe("WorkspaceRuntime", () => { |
| 34 | it("resolves reserved, relative, and literal dynamic Worker Loader modules", async () => { |
no test coverage detected