mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
fix test
This commit is contained in:
@@ -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" });
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user