This commit is contained in:
Alistair Smith
2025-10-02 17:33:33 -07:00
parent a6d3808ad8
commit 86af3dd034

View File

@@ -547,10 +547,10 @@ it("throws a validation error when passing invalid routes", () => {
},
"/path": {
GET(req) {
return Response.json({ message: "Hello World" });
return Response.json({ message: "Hello Get" });
},
POST(req) {
return Response.json({ message: "Hello World" });
return Response.json({ message: "Hello Post" });
},
},
},