body: json()

in src/test-routes/array.ts [242:258]


      body: json(["Fri, 01 Dec 2000 00:00:01 GMT", "Wed, 02 Jan 1980 00:11:35 GMT", "Wed, 12 Oct 1492 10:15:01 GMT"]),
    };
  });

  app.put("/array/prim/date-time-rfc1123/valid", "putArrayDateTimeRfc1123Valid", (req) => {
    req.expect.bodyEquals([
      "Fri, 01 Dec 2000 00:00:01 GMT",
      "Wed, 02 Jan 1980 00:11:35 GMT",
      "Wed, 12 Oct 1492 10:15:01 GMT",
    ]);
    return { status: 200 };
  });
  //#endregion

  //#region duration
  app.get("/array/prim/duration/valid", "getArrayDurationValid", (req) => {
    return {