Skip to content

Commit 830c971

Browse files
committed
chore: regenerate
1 parent 7ca12cc commit 830c971

7 files changed

Lines changed: 39465 additions & 1792 deletions

File tree

e2e/src/generated/client/axios/client.ts

Lines changed: 12 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

e2e/src/index.axios.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ describe.each(startServerFunctions)(
400400
})
401401
})
402402

403-
describe.skip("POST /media-types/x-www-form-urlencoded", () => {
403+
describe("POST /media-types/x-www-form-urlencoded", () => {
404404
it("can send and parse application/x-www-form-urlencoded request bodies", async () => {
405405
const productOrder = {
406406
sku: "sku_123",
@@ -412,7 +412,6 @@ describe.each(startServerFunctions)(
412412
} satisfies t_ProductOrder
413413

414414
const res = await client.postMediaTypesXWwwFormUrlencoded({
415-
// @ts-expect-error: axios doesn't explicitly support this yet.
416415
requestBody: productOrder,
417416
})
418417
expect(res.status).toBe(200)

e2e/src/routes/express/validation.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ const postValidationEnums: PostValidationEnums = async ({body}, respond) => {
1414
const postValidationOptionalBody: PostValidationOptionalBody = async (
1515
{body},
1616
respond,
17-
req,
1817
) => {
19-
console.log(req.body)
2018
if (body) {
2119
return respond.with200().body(body)
2220
} else {

0 commit comments

Comments
 (0)