chore: generate

This commit is contained in:
opencode-agent[bot]
2026-04-29 20:52:19 +00:00
parent 9db5890ce5
commit 1124ae17b4
5 changed files with 37 additions and 23 deletions

View File

@@ -22,14 +22,17 @@ describe("HttpApi workspace proxy", () => {
Effect.gen(function* () {
const req = yield* HttpServerRequest.HttpServerRequest
const body = yield* req.text
return yield* HttpServerResponse.json({ path: req.url, method: req.method, body }, {
status: 201,
headers: {
"content-encoding": "identity",
"content-length": "999",
"x-remote": "yes",
return yield* HttpServerResponse.json(
{ path: req.url, method: req.method, body },
{
status: 201,
headers: {
"content-encoding": "identity",
"content-length": "999",
"x-remote": "yes",
},
},
})
)
}),
)
const url = yield* serverUrl()